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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f7f5;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-mini {
  display: inline-block;
  color: #009966;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-top h2,
.about-text h2,
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: #1f1a17;
  margin-bottom: 18px;
}

.section-top p,
.about-text p,
.contact-left p {
  color: #6b625d;
  font-size: 18px;
}


/* =====================================================
   ÜST MENÜ / NAVBAR
===================================================== */

/* HEADER */
.header {
  position: relative;
}

.nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(1200px, 92%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img,
.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.logo-title {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.logo-sub {
  display: block;
  color: #ddd;
  font-size: 12px;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 14px;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: #aadfbc;
}

.menu-toggle {
  display: none;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}


/* =====================================================
   HERO / ANA GİRİŞ ALANI
===================================================== */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 100px;
}

.hero-badge {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 26px;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-line {
  width: 120px;
  height: 3px;
  background: #d9b35f;
  margin: 20px auto;
  border-radius: 10px;
}

.hero h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero p {
  font-size: clamp(17px, 2vw, 28px);
  max-width: 850px;
  margin: 0 auto 36px;
  color: #f2f2f2;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: #14a44d;
  color: #fff;
}

.btn-primary:hover {
  background: #10873f;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #222;
}

.scroll-down {
  display: inline-block;
  margin-top: 40px;
  color: #fff;
  font-size: 34px;
  animation: bounce 1.6s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}


/* =====================================================
   HİZMETLER / NEDEN ÇEÇEVA ALANI
===================================================== */

/* FEATURES */
.features {
  background: #f6f6f4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #dff7e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 22px;
  color: #1f1a17;
  margin-bottom: 8px;
}

.feature-card p {
  color: #6b625d;
  font-size: 16px;
}


/* =====================================================
   HAKKIMIZDA ALANI
===================================================== */

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p + p {
  margin-top: 14px;
}

.about-image img {
  border-radius: 22px;
  min-height: 420px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}


/* =====================================================
   BUNGALOV / ODALAR ALANI
===================================================== */

/* ROOMS */
.rooms {
  background: #f7f7f5;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.room-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.room-image {
  position: relative;
  height: 300px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #dff0ff;
  color: #1565aa;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.badge-orange {
  background: #ffe9db;
  color: #d0701d;
}

.badge-red {
  background: #ffe0e0;
  color: #c94141;
}

.badge-green {
  background: #ddf8eb;
  color: #1d9a61;
}

.room-content {
  padding: 26px;
}

.room-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1;
  color: #1f1a17;
  margin-bottom: 8px;
}

.room-content h4 {
  font-size: 20px;
  color: #9b7b4f;
  margin-bottom: 14px;
  font-weight: 500;
}

.room-content p {
  font-size: 16px;
  color: #655b56;
  margin-bottom: 18px;
}

.room-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  color: #2f6c4e;
  font-weight: 500;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.room-tags span {
  padding: 7px 13px;
  border-radius: 999px;
  background: #f2f1ef;
  font-size: 13px;
  color: #6b625d;
}

.room-btn {
  display: block;
  text-align: center;
  background: #231f20;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
}

.room-btn:hover {
  background: #111;
}


/* =====================================================
   GALERİ ALANI
===================================================== */

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


/* =====================================================
   YORUMLAR / MİSAFİR DENEYİMLERİ
===================================================== */

/* REVIEWS */
.reviews {
  background: #f8f8f6;
}

.rating-box {
  margin: 10px 0 14px;
  font-size: 20px;
  color: #222;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.review-room {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f0f0f0;
  color: #888;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.review-stars {
  color: #f1b400;
  margin-bottom: 12px;
  font-size: 18px;
}

.review-card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #1f1a17;
}

.review-card p {
  color: #625955;
  margin-bottom: 18px;
}

.review-user strong {
  display: block;
  color: #1f1a17;
}

.review-user span {
  color: #999;
  font-size: 14px;
}


/* =====================================================
   İLETİŞİM VE FORM ALANI
===================================================== */

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-box {
  margin-top: 24px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.contact-right {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.contact-right h3 {
  font-size: 34px;
  margin-bottom: 22px;
  color: #1f1a17;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2f2a27;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #e5e2df;
  border-radius: 14px;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #14a44d;
}

.submit-btn {
  width: 100%;
  border: none;
  background: #231f20;
  color: #fff;
  padding: 17px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  background: #111;
}


/* =====================================================
   ESKİ FOOTER ALANI
===================================================== */

/* FOOTER */
.footer {
  background: #211d1c;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
}

.footer .logo-title {
  color: #fff;
}

.footer .logo-sub {
  color: #d0c6bf;
}

.footer-col p,
.footer-col a {
  color: #d2c8c2;
  font-size: 17px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.socials a {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 999px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  color: #b9ada5;
  font-size: 15px;
}


/* =====================================================
   GENEL RESPONSIVE AYARLAR
===================================================== */

/* RESPONSIVE */
@media (max-width: 1100px) {
  .feature-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    width: 260px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .room-grid,
  .gallery-grid,
  .review-grid,
  .feature-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn {
    width: 100%;
    max-width: 320px;
  }

  .room-image {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-badge {
    width: 90px;
    height: 90px;
  }

  .room-content h3 {
    font-size: 32px;
  }

  .contact-right {
    padding: 22px;
  }

  
}

/* =====================================================
   GALERİ MODAL VE SAYFALAMA
===================================================== */

.gallery-img {
  cursor: pointer;
}

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-modal.active {
  display: flex;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.image-prev,
.image-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 34px;
  font-weight: 700;
  color: #111;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  user-select: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  appearance: none;
}

.image-prev {
  left: 20px;
}

.image-next {
  right: 20px;
}

.image-prev:hover,
.image-next:hover {
  color: #111;
  background: #fff;
}

.gallery-header-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.gallery-page-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-page-btn:hover {
  background: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-img.hidden {
  display: none;
}

/* =====================================================
   YUKARI ÇIK BUTONU
===================================================== */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #000; /* TAM SİYAH */
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 99999; /* EN ÜSTE ÇIKAR */
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

#scrollTopBtn:hover {
  background: #222;
}


/* =====================================================
   HİZMETLER SLIDER SİSTEMİ
===================================================== */

/* WRAPPER */
.features-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* SLIDER ANA */
.features-slider {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

/* HER SAYFA */
.feature-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 sütun */
  gap: 24px;
}

/* KART */
.feature-card {
  width: 100%;
  padding: 30px;
}

/* OK BUTONLARI */
.features-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.features-btn:hover {
  background: #222;
}

.features-btn {
  position: static; /* artık absolute değil */
  background: #000;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.features-header-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px; /* BURAYI artırdık */
}

/* MOBİL */
@media (max-width: 768px) {
  .feature-page {
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
  }
}

@media (max-width: 480px) {
  .feature-page {
    grid-template-columns: 1fr; /* 1 sütun */
  }
}


/* =====================================================
   MOBİL DÜZENLEME BLOKLARI
===================================================== */

/* GENEL MOBİL DÜZELTMELER */
@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .section-top {
    margin-bottom: 30px;
  }

  .section-top p,
  .about-text p,
  .contact-left p {
    font-size: 16px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.05;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
    max-width: 95%;
  }

  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  .room-info {
    gap: 12px;
    font-size: 14px;
  }

  .room-tags span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .gallery-grid img {
    height: 220px;
  }

  .image-prev,
  .image-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 24px;
  }

  .image-modal-close {
    top: 12px;
    right: 18px;
    font-size: 32px;
  }

  .features-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .features-btn.prev {
    left: 6px;
  }

  .features-btn.next {
    right: 6px;
  }

  #scrollTopBtn {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 55px 0;
  }

  .logo img,
  .footer-logo img {
    width: 46px;
    height: 46px;
  }

  .logo-title {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .nav {
    top: 14px;
  }

  .nav-links {
    width: 220px;
    top: 65px;
    padding: 14px;
    gap: 14px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-line {
    width: 80px;
    margin: 14px auto;
  }

  .scroll-down {
    font-size: 28px;
    margin-top: 24px;
  }

  .room-image {
    height: 220px;
  }

  .room-content {
    padding: 20px;
  }

  .room-content h3 {
    font-size: 28px;
  }

  .room-content h4 {
    font-size: 18px;
  }

  .feature-card,
  .review-card,
  .contact-right {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .review-card h3 {
    font-size: 22px;
  }

  .gallery-grid img {
    height: 200px;
    border-radius: 14px;
  }

  .map-box {
    height: 240px;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 15px;
  }
}


/* =====================================================
   WHATSAPP VE SOSYAL MEDYA BUTONLARI
===================================================== */

.wp-big-btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.wp-big-btn a {
  background: #25D366;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.wp-big-btn a:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.social-big-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* ORTAK BUTON */
.social-big-buttons a {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* WHATSAPP */
.wp-btn {
  background: #25D366;
}

.wp-btn:hover {
  background: #1ebe5d;
}

/* INSTAGRAM */
.ig-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ig-btn:hover {
  transform: translateY(-2px);
}

/* FACEBOOK */
.fb-btn {
  background: #1877F2;
}

.fb-btn:hover {
  background: #125edc;
}

.social-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}


/* =====================================================
   GALERİ FİLTRE BUTONLARI
===================================================== */

.gallery-filters {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  background: #eee;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.gallery-filters button.active {
  background: #000;
  color: #fff;
}

.gallery-filters button:hover {
  background: #333;
  color: #fff;
}


/* =====================================================
   KONUM BUTONU
===================================================== */

.location-btn {
  width: 100%;
  max-width: 420px;
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.location-btn:hover {
  background: #333 !important;
  color: #fff !important;
}


/* =====================================================
   REZERVASYON / FİYAT HESAPLAMA ALANI
===================================================== */

/* REZERVASYON */
.booking {
  background: linear-gradient(180deg, #f7f7f5 0%, #eeeeea 100%);
}

.booking-card {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  padding: 38px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
}

.booking-price {
  text-align: center;
  margin-bottom: 28px;
}

.booking-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: #1f1a17;
  letter-spacing: -1px;
}

.booking-price span {
  display: block;
  color: #8a817b;
  font-size: 16px;
  margin-top: 4px;
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.booking-dates label,
.booking-guest {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.booking-dates span,
.booking-guest span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #1f1a17;
}

.booking-dates input,
.booking-guest select {
  width: 100%;
  height: 62px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid #ded9d3;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #1f1a17;
  outline: none;
  transition: 0.25s ease;
}

.booking-dates input:focus,
.booking-guest select:focus {
  border-color: #14a44d;
  box-shadow: 0 0 0 4px rgba(20,164,77,0.12);
}

.booking-guest {
  margin-bottom: 24px;
}

.booking-btn {
  width: 100%;
  height: 66px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #18b85a, #0f8f42);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 14px 26px rgba(20,164,77,0.28);
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(20,164,77,0.34);
}

.booking-note {
  text-align: center;
  margin-top: 22px;
  color: #8a817b;
  font-size: 15px;
}

@media (max-width: 600px) {
  .booking-card {
    padding: 24px;
    border-radius: 24px;
  }

  .booking-price strong {
    font-size: 38px;
  }

  .booking-dates {
    grid-template-columns: 1fr;
  }

  .booking-btn {
    height: 58px;
    font-size: 18px;
  }
}

.booking-daily {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6b625d;
}

.booking-daily span {
  font-weight: 600;
  color: #1f1a17;
}


/* =====================================================
   BUNGALOV GALERİ MODAL SİSTEMİ
===================================================== */

.bungalov-img {
  cursor: pointer;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 18px;
  object-fit: contain;
}

.gallery-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 45px;
  cursor: pointer;
  z-index: 100000;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: black;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 35px;
  cursor: pointer;
  z-index: 100000;
}

.gallery-btn.prev {
  left: 40px;
}

.gallery-btn.next {
  right: 40px;
}

/* =====================================================
   HERO VİDEO ARKA PLAN AYARLARI
===================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: none !important;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.bungalov-img {
  cursor: pointer;
}

.bungalov-gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.bungalov-gallery-modal.active {
  display: flex;
}

.bungalov-gallery-modal img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 18px;
  object-fit: contain;
}

.gallery-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 45px;
  cursor: pointer;
  z-index: 1000000;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 34px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1000000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  appearance: none;
}

.gallery-arrow:hover {
  background: #fff;
  color: #111;
}

.gallery-prev {
  left: 35px;
}

.gallery-next {
  right: 35px;
}
.bungalov-gallery-modal video {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 18px;
}
.room-image {
  position: relative;
  cursor: pointer;
}

.gallery-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 5;
  transition: 0.25s ease;
}

.room-image:hover .gallery-hint {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.9);
}

.room-image:hover img {
  transform: scale(1.04);
}

.room-image img {
  transition: 0.35s ease;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* =====================================================
   FORM TEMİZLEME BUTONU
===================================================== */

.clear-btn {
  background: #eaeaea;   /* açık gri */
  color: #333;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 8px;
  width: auto;           /* full width olmasın */
  display: block;
  margin: 10px auto 0;
  font-weight: 600;
  box-shadow: none;
  transition: 0.2s;
}

.clear-btn:hover {
  background: #dcdcdc;
}

/* =====================================================
   SIK SORULAN SORULAR / FAQ
===================================================== */

/* FAQ - SIK SORULAN SORULAR */
.faq {
  background: #f7f7f5;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: #1f1a17;
}

.faq-question span {
  font-size: 18px;
  font-weight: 800;
}

.faq-question b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #6b625d;
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question b {
  transform: rotate(45deg);
  background: #14a44d;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 18px;
    gap: 14px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
    font-size: 15px;
  }
}

/* =====================================================
   SAYFA OKUMA İLERLEME ÇUBUĞU
===================================================== */

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px; /* ince olsun */
  width: 0%;
  background: linear-gradient(90deg, #14a44d, #25D366);
  z-index: 999999;
  transition: width 0.1s ease;
}

/* =====================================================
   DİL DEĞİŞTİRME BUTONLARI
===================================================== */

.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 10px;
}

.lang-switch button {
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.lang-switch button.active {
  background: #14a44d;
}

.lang-switch button:hover {
  background: rgba(255,255,255,0.25);
}

/* =====================================================
   MİSAFİR SEÇİM ALANI
===================================================== */

.guest-box {
  margin-bottom: 24px;
}

.guest-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #1f1a17;
  margin-bottom: 10px;
}

.guest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guest-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guest-row label span {
  font-size: 13px;
  font-weight: 800;
  color: #1f1a17;
}

.guest-row select {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid #ded9d3;
  background: #fff;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

@media (max-width: 600px) {
  .guest-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   MÜSAİTLİK / UYARI KUTUSU
===================================================== */

.availability-box {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
  padding: 12px 14px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

.availability-box .icon {
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   ÇEÇEVA KARADENİZ ASİSTANI / CHATBOT
===================================================== */

.ceceva-bot {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.ceceva-bot-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0f5132, #22c55e);
  color: white;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.55);
  transition: 0.3s;
  animation: teaPulse 2s infinite;
}

.ceceva-bot-btn:hover {
  transform: scale(1.08);
}

@keyframes teaPulse {
  0% {
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
  }

  50% {
    box-shadow: 0 0 28px rgba(34, 197, 94, 0.9);
  }

  100% {
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
  }
}

.ceceva-bot-box {
  display: none;
  width: 360px;
  height: 520px;
  background: #071b12;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);

  position: absolute;
  left: 0;
  bottom: 82px;

  transform-origin: bottom left;
  animation: botOpen 0.25s ease;
}

.ceceva-bot-box.active {
  display: flex;
  flex-direction: column;
}

@keyframes botOpen {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ceceva-bot-header {
  background: linear-gradient(135deg, #064e3b, #16a34a);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ceceva-bot-header strong {
  display: block;
  font-size: 15px;
}

.ceceva-bot-header span {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.ceceva-bot-header button {
  background: transparent;
  color: white;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.ceceva-bot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;

  background:
    radial-gradient(circle at top,
      rgba(34, 197, 94, 0.12),
      transparent 35%),
    #071b12;
}

.bot-message,
.user-message {
  max-width: 85%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.bot-message {
  background: rgba(255, 255, 255, 0.08);
  color: #eafff0;
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.user-message {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  margin-left: auto;
}

.ceceva-quick-questions {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: #092216;
}

.ceceva-quick-questions::-webkit-scrollbar {
  height: 4px;
}

.ceceva-quick-questions::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 999px;
}

.ceceva-quick-questions button {
  white-space: nowrap;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.12);
  color: #d9ffe5;
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.25s;
}

.ceceva-quick-questions button:hover {
  background: rgba(34, 197, 94, 0.22);
  transform: translateY(-1px);
}

.ceceva-bot-input {
  display: flex;
  padding: 12px;
  gap: 8px;
  background: #06160f;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.ceceva-bot-input input {
  flex: 1;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 12px 14px;
  background: #10291c;
  color: white;
  font-size: 14px;
}

.ceceva-bot-input input::placeholder {
  color: rgba(255,255,255,0.5);
}

.ceceva-bot-input button {
  border: none;
  border-radius: 999px;
  padding: 0 16px;
  background: #22c55e;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
}

.ceceva-bot-input button:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {

  .ceceva-bot {
    left: 14px;
    bottom: 14px;
  }

  .ceceva-bot-box {
    width: calc(100vw - 28px);
    height: 78vh;

    left: 0;
    bottom: 82px;
  }

}

/* =====================================================
   CHATBOT KONUŞMA BALONU
===================================================== */

.ceceva-bot-bubble {
  position: absolute;
  left: 78px;
  bottom: 10px;
  width: 230px;
  padding: 12px 14px;
  background: rgba(7, 27, 18, 0.96);
  color: #eafff0;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.35s ease;
}

.ceceva-bot-bubble.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ceceva-bot-bubble::after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  background: rgba(7, 27, 18, 0.96);
  border-left: 1px solid rgba(34, 197, 94, 0.35);
  border-bottom: 1px solid rgba(34, 197, 94, 0.35);
  transform: rotate(45deg);
}

@media (max-width: 480px) {
  .ceceva-bot-bubble {
    left: 72px;
    bottom: 8px;
    width: 210px;
    font-size: 12px;
  }
}
.ceceva-bot-bubble {
  position: absolute;
  left: 78px;
  bottom: 8px;

  width: 240px;

  background: rgba(7, 27, 18, 0.96);

  color: #eafff0;

  border: 1px solid rgba(34, 197, 94, 0.35);

  border-radius: 18px 18px 18px 5px;

  padding: 12px 14px;

  font-size: 13px;

  line-height: 1.5;

  box-shadow: 0 10px 35px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  opacity: 0;

  transform: translateY(15px) scale(0.95);

  pointer-events: none;

  transition: all 0.4s ease;

  z-index: 9999;
}

.ceceva-bot-bubble.show {
  opacity: 1;

  transform: translateY(0) scale(1);

  pointer-events: auto;
}

.ceceva-bot-bubble::after {
  content: "";

  position: absolute;

  left: -7px;

  bottom: 12px;

  width: 14px;

  height: 14px;

  background: rgba(7, 27, 18, 0.96);

  border-left: 1px solid rgba(34, 197, 94, 0.35);

  border-bottom: 1px solid rgba(34, 197, 94, 0.35);

  transform: rotate(45deg);
}

/* =====================================================
   CHATBOT YAZIYOR ANİMASYONU
===================================================== */

.typing-message {
  display: flex;
  align-items: center;
  gap: 5px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: typingBounce 1.2s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.typing-text {
  margin-left: 6px;
  font-size: 13px;
  opacity: 0.85;
}

@keyframes typingBounce {

  0% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-5px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

}

/* =====================================================
   YENİ CECEVA FOOTER TASARIMI
===================================================== */

.ceceva-footer{
  background:
    linear-gradient(to right, rgba(5,20,10,.96), rgba(10,35,20,.96)),
    #07110b;
    
  color:#fff;
  padding:80px 8% 30px;
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(80,255,150,.12);
}

.footer-container{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.footer-logo img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #32d67c;
  box-shadow:0 0 25px rgba(50,214,124,.35);
}

.footer-logo h2{
  font-size:32px;
  margin:0;
}

.footer-logo span{
  color:#69ffac;
  letter-spacing:4px;
  font-size:13px;
}

.footer-brand p{
  color:#c9d7ce;
  line-height:1.7;
  margin-bottom:25px;
}

.footer-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(90,255,160,.15);
  padding:18px;
  border-radius:18px;
  backdrop-filter: blur(10px);
  color:#d7ffe6;
  box-shadow:0 0 20px rgba(0,255,120,.08);
}

.footer-col h3{
  font-size:24px;
  margin-bottom:25px;
  color:#8cffbd;
  position:relative;
}

.footer-col h3::after{
content:"";
width:45px;
height:3px;
background:#39ff88;
position:absolute;
left:0;
bottom:-10px;
border-radius:20px;
}

/* SADECE MOBİLDE ORTALA */
@media (max-width:768px){

.footer-col h3{
text-align:center;
}

.footer-col h3::after{
left:50%;
transform:translateX(-50%);
}

}


.footer-col a{
  display:block;
  color:#dce7df;
  text-decoration:none;
  margin-bottom:16px;
  transition:.3s;
  font-size:18px;
}

.footer-col a:hover{
  color:#4dff9f;
  transform:translateX(6px);
}


/* =====================================================
   FOOTER İLETİŞİM SATIRI DÜZELTMESİ
===================================================== */

.footer-contact{
  margin-bottom:18px;
  color:#dce7df;
  font-size:17px;
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:25px;
}

.footer-social a{
  padding:10px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(80,255,150,.15);
  transition:.3s;
}

.footer-social a:hover{
  background:#39ff88;
  color:#000;
}

.footer-bottom{
  margin-top:70px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:#9eb3a4;
  font-size:16px;
}

/* MOBİL */
@media(max-width:950px){

  .footer-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .ceceva-footer{
    padding:60px 25px 30px;
  }

}
@media (max-width: 768px){

  .footer-container{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:25px 18px !important;
  }

  .footer-brand{
    grid-column:1 / -1;
  }

  .footer-col{
    margin-top:0 !important;
  }

  .footer-col h3{
    font-size:17px !important;
    margin-bottom:14px !important;
  }

  .footer-col a,
  .footer-contact{
    font-size:13px !important;
    margin-bottom:10px !important;
  }

  .footer-social{
    grid-column:1 / -1;
  }

  .footer-nature-box{
    margin-top:18px !important;
  }

  .footer-bottom{
    margin-top:14px !important;
  }
}
@media (max-width: 768px){

  .features-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
  }

  .feature-card{
    padding:16px 12px;
    border-radius:18px;
  }

  .feature-card h3{
    font-size:15px;
    line-height:1.3;
  }

  .feature-card p{
    font-size:12px;
    line-height:1.5;
  }

  .feature-icon{
    width:45px;
    height:45px;
    margin-bottom:10px;
  }

}
@media (max-width: 768px){

  .reviews-grid,
  .review-grid,
  .yorumlar-grid,
  .testimonials-grid,
  .testimonial-grid{
    display: flex !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 0 20px 15px !important;
    scroll-snap-type: x mandatory;
  }

  .reviews-grid > *,
  .review-grid > *,
  .yorumlar-grid > *,
  .testimonials-grid > *,
  .testimonial-grid > *{
    min-width: 82% !important;
    max-width: 82% !important;
    flex: 0 0 82% !important;
    scroll-snap-align: center;
  }

  .reviews-grid::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar,
  .yorumlar-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar{
    display: none;
  }

}
.footer-contact{
  display:flex;
  align-items:center;
  gap:8px;
  line-height:1.4;
}


/* =====================================================
   ARAPÇA / RTL DİL DESTEĞİ
===================================================== */

.rtl-mode {
  direction: rtl;
  text-align: right;
}

.rtl-mode input,
.rtl-mode textarea,
.rtl-mode select {
  direction: rtl;
  text-align: right;
}

/* =====================================================
   FULL MOBİL RESPONSIVE ANA BLOK
===================================================== */

/* =========================
   FULL MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 55px 18px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
  }

  .hero {
    min-height: 85vh;
    padding: 120px 18px 70px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a,
  .hero-buttons button {
    width: 100%;
    justify-content: center;
  }

  .features-grid,
  .bungalow-grid,
  .gallery-grid,
  .reviews-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .bungalow-card,
  .feature-card,
  .review-card,
  .contact-card {
    width: 100%;
  }

  .reservation-form,
  .reservation-box {
    width: 100%;
    padding: 20px;
  }

  .reservation-form .form-row,
  .reservation-box .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }

  .lang-switch {
    gap: 6px;
  }

  .lang-switch button {
    padding: 7px 9px;
    font-size: 12px;
  }

  footer {
    text-align: center;
  }

  .footer-links,
  .footer-social,
  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .ceceva-bot-box {
    width: calc(100vw - 24px) !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 85px !important;
    max-height: 70vh;
  }

  .ceceva-bot-btn {
    bottom: 18px;
  }
}


/* =====================================================
   NEDEN ÇEÇEVA ARKA PLAN FİLİGRAN
===================================================== */

.why-section{
    position: relative;
    overflow: hidden;
    background: #f6f8f3;
}

/* FİLİGRAN RESİM */
.why-bg-img{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0.13;

    filter: blur(1px);

    z-index: 0;
    pointer-events: none;
}

/* içerik */
.why-section .container{
    position: relative;
    z-index: 2;
}

/* =====================================================
   TÜM SAYFA ARKA PLAN FOTOĞRAFI
===================================================== */

/* TÜM SAYFAYA TEK ARKA PLAN */

body{
    background:
        linear-gradient(
            rgba(245,247,242,0.88),
            rgba(245,247,242,0.88)
        ),
        url("images/why-bg.webp");

    background-size: cover;
    background-position: 99% center;
    background-attachment: fixed;
}

/* sectionlar şeffaf olsun */
section{
    background: transparent !important;
}
body{
    background:
        linear-gradient(
            rgba(245,247,242,0.55),
            rgba(245,247,242,0.55)
        ),
        url("images/why-bg.webp");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* sectionlar transparan */
section{
    background: transparent !important;
}
@media(max-width:768px){

  body{
    background: none !important;
  }

  body::before{
    content:"";
    position: fixed;
    inset: 0;
    background-image: url("images/why-bg.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
  }

  section{
    background: rgba(246,248,243,0.35) !important;
  }
}
#scrollTopBtn{
    background: linear-gradient(135deg, #0f9b5f, #1dbf73);
    color: white;

    box-shadow:
        0 10px 25px rgba(16,185,129,0.35),
        0 0 20px rgba(16,185,129,0.25);

    border: none;

    transition: 0.3s ease;
}

#scrollTopBtn:hover{
    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 15px 35px rgba(16,185,129,0.45),
        0 0 25px rgba(16,185,129,0.35);
}

body.gallery-modal-open #scrollTopBtn,
body.gallery-modal-open .ceceva-bot {
  display: none !important;
}

body.gallery-modal-open {
  overscroll-behavior: none;
}

/* INTRO / AÇILIŞ ANİMASYONU */

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #213322;
  transition: opacity 2s ease, visibility 2s ease;
}

.site-intro.hide {
  opacity: 0;
  visibility: hidden;
}

/* Arka plan resmi */
.intro-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.75;
  z-index: 0;
}

/* Koyu yeşil filtre */
.site-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 10, 0.45);
  z-index: 1;
}

/* İçerik */
.intro-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  animation: introFade 1.4s ease forwards;
}

.intro-content img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 35px rgba(34,197,94,0.45);
}

.intro-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  margin-bottom: 10px;
  line-height: 1.1;
}

.intro-content p {
  font-size: 20px;
  letter-spacing: 1px;
  color: #dfffe9;
}

/* Yapraklar */
.intro-leaves {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.intro-leaves span {
  position: absolute;
  top: -60px;
  font-size: 34px;
  animation: leafFall 3s linear infinite;
  opacity: 0.8;
}

.intro-leaves span:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.intro-leaves span:nth-child(2) {
  left: 50%;
  animation-delay: 0.7s;
}

.intro-leaves span:nth-child(3) {
  left: 75%;
  animation-delay: 1.3s;
}

@keyframes introFade {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes leafFall {
  0% {
    transform: translateY(-60px) rotate(0deg);
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
  }
}

/* MOBİL INTRO */
@media (max-width: 768px) {
  .site-intro {
    padding: 24px;
  }

  .intro-bg-img {
    object-fit: cover;
    object-position: 62% center;
    opacity: 0.7;
  }

  .intro-content {
    width: 100%;
    max-width: 340px;
    padding: 20px;
    transform: translateY(-10px);
  }

  .intro-content img {
    width: 95px;
    height: 95px;
    margin-bottom: 16px;
  }

  .intro-content h1 {
    font-size: 36px;
  }

  .intro-content p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
  }

  .intro-leaves span {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .intro-bg-img {
    object-position: 66% center;
  }

  .intro-content img {
    width: 82px;
    height: 82px;
  }

  .intro-content h1 {
    font-size: 30px;
  }

  .intro-content p {
    font-size: 14px;
  }

  .intro-leaves span {
    font-size: 22px;
  }
}
@media (max-width:768px){

.footer-col{
    text-align:center;
}

.footer-col p{
    text-align:center;
    justify-content:center;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    align-items:center;
}

}
.reviews-more{
  text-align:center;
  margin-top:40px;
}

.reviews-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 30px;
  background:#0f5132;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.reviews-btn:hover{
  transform:translateY(-3px);
  background:#198754;
}

/* ===== MÜSAİTLİK TAKVİMİ BUTONU ===== */

.mini-availability-btn {
    display: block;
    margin-left: auto;
    margin-bottom: 20px;

    padding: 12px 20px;

    border: 1px solid #b7e4c7;
    border-radius: 999px;

    background: #f4fff7;
    color: #116530;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.mini-availability-btn:hover {
    background: #18a957;
    color: white;
    transform: translateY(-2px);
}

/* ===== MODAL ===== */

.availability-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99999;
}

.availability-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.availability-modal-content {
    width: 95%;
    max-width: 1400px;
    height: 85vh;

    background: white;

    border-radius: 24px;

    padding: 24px;

    position: relative;

    overflow: hidden;
}

/* ===== KAPAT ===== */

.availability-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f3f3f3;

    font-size: 24px;

    cursor: pointer;
}

.availability-close:hover {
    background: #e7e7e7;
}

/* ===== ÜST ALAN ===== */

.availability-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}

.availability-head h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

/* ===== AY SEÇİCİ ===== */

#availabilityMonth {
    padding: 12px 18px;

    border-radius: 14px;

    border: 1px solid #ddd;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

/* ===== TABLO ===== */

.availability-scroll {
    overflow-x: auto;
    overflow-y: auto;

    height: calc(85vh - 120px);
}

#availabilityCalendarTable {
    border-collapse: collapse;
    width: 100%;
    min-width: 1400px;
}

#availabilityCalendarTable th {
    background: #2d74a7;
    color: white;

    padding: 15px;

    white-space: nowrap;

    font-size: 14px;
}

#availabilityCalendarTable th:first-child {
    background: #555;
}

/* ===== SATIR BAŞLIKLARI ===== */

.room-name {
    background: #5a5a5a;
    color: white;

    font-weight: 800;

    min-width: 150px;

    text-align: center;
}

/* ===== HÜCRELER ===== */

#availabilityCalendarTable td {
    border: 1px solid #d7d7d7;

    text-align: center;

    padding: 12px;

    min-width: 105px;
    height: 80px;
}

/* ===== MÜSAİT ===== */

.available-cell {
    background: white;
}

.available-cell span {
    display: block;
    margin-bottom: 5px;

    color: #111;
    font-size: 15px;
}

.available-cell strong {
    color: #0f5f97;
}

/* ===== DOLU ===== */

.busy-cell {
    background: #d7d7d7;
    color: #888;

    font-weight: 700;
}

/* ===== MOBİL ===== */

@media (max-width:768px){

    .mini-availability-btn{
        width:100%;
        text-align:center;
    }

    .availability-modal-content{
        width:100%;
        height:100vh;
        border-radius:0;
    }

}
.availability-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99999;
}

.availability-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-modal-content {
  background: white;
  padding: 30px;
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
}

.availability-close {
  float: right;
  border: none;
  background: #eee;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 24px;
  cursor: pointer;
}

  .availability-title-btn{
    width:auto;
    min-width:180px;

    margin:12px auto;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    padding:10px 16px;

    border:1px solid #b7e4c7;
    border-radius:12px;

    background:#138a43;
    color:#ffffff;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.availability-title-btn:hover{
    background:#18a957;
    color:white;
}
.price-info-box{
  margin: 10px auto 22px;
  width: fit-content;
  padding: 12px 22px;
  border-radius: 16px;
  background: #f0fff5;
  color: #0b8f3a;
  border: 1px solid #9be7b3;
  font-weight: 800;
  cursor: pointer;
}

.price-list-box{
  max-width: 360px;
  margin: 0 auto 25px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e6e0d8;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  font-size: 16px;
  line-height: 1.9;
}
.full-day{
    background:#d9d9d9;
    color:#777;
    font-weight:600;
}

.checkout-day{
    background:#ffe082;
    color:#8a6d00;
    font-weight:600;
}

.available-day{
    background:#fff;
    color:#000;
}

.legend{
    display:flex;
    gap:15px;
    margin-top:15px;
    flex-wrap:wrap;
    font-size:14px;
}

.legend span{
    display:flex;
    align-items:center;
    gap:5px;
}
/* Dolu */
.status-dolu{
    background:#ffdddd !important;
    color:#c62828 !important;
    font-weight:700;
}

/* Çıkış Var */
.status-cikis{
    background:#fff3cd !important;
    color:#856404 !important;
    font-weight:700;
}

/* Müsait */
.status-musait{
    background:#e8f5e9 !important;
    color:#2e7d32 !important;
    font-weight:700;
}

.availability-modal-content {
  max-height: 85vh;
  overflow-y: auto;
  padding-bottom: 40px;
}
.developer-credit {
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
  color: #b9d8c2;
}

.developer-credit a {
  color: #37ff8b;
  font-weight: 700;
  text-decoration: none;
}

.developer-credit a:hover {
  text-decoration: underline;
}
#heroVideo{
    width:90%;
    height:90%;
    object-fit:cover;
}
.gallery-video{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    display: block;
}
.video-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    z-index:99999;
    justify-content:center;
    align-items:center;
}

.video-modal video{
    width:90%;
    max-width:1200px;
    max-height:90vh;
    border-radius:12px;
}

.video-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:50px;
    cursor:pointer;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-video {
    width: 100vw;
    height: 100svh;
    object-fit: cover;
  }
}
.hero::after {
  display: none !important;
}
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

.hero {
  position: relative !important;
  width: 100% !important;
  height: 100svh !important;
  overflow: hidden !important;
  background: none !important;
}

.hero-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 100vw !important;
  height: 100svh !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: translate(-50%, -50%) scale(1.25) !important;
  display: block !important;
}

.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;  
}
/* SAFİR - Gökyüzü Mavisi */
.room-card:nth-child(1) .room-content{
    background:#cbdbf1 !important;
}

/* Ana video oynayana kadar mevcut arka plan gorselini koru. */
.hero-video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* ANKA - Açık Şeftali */
.room-card:nth-child(2) .room-content{
    background:#f5e1d0 !important;
}
.about-stats{
  display:flex;
  gap:25px;
  margin:30px 0;
  flex-wrap:wrap;
}

.stat-item{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);
  padding:18px 28px;
  border-radius:18px;
  min-width:140px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.stat-item span{
  display:block;
  font-size:34px;
  font-weight:700;
  color:#0f7631;
  line-height:1;
}

.stat-item small{
  display:block;
  margin-top:8px;
  font-size:15px;
  color:#555;
}
@media (max-width: 768px){

  .about-stats{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 25px 0 35px;
    padding: 0 8px;
  }

  .stat-item{
    width: 100% !important;
    min-width: 0 !important;
    padding: 18px 10px;
    border-radius: 16px;
  }

  .stat-item span{
    font-size: 32px;
  }

  .stat-item small{
    font-size: 14px;
  }

  .stat-item:nth-child(3){
    grid-column: 1 / 3;
    width: 50% !important;
    justify-self: center;
  }
}
.footer-bottom{
  text-align:center;
}

.footer-bottom a{
  color:#bdbdbd;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:#2ecc71;
}
.reservation-info-box {
  margin: 22px 0 26px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #f1fff6;
  border: 1px solid #bfe8cd;
  color: #0b5f2a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.reservation-info-box .info-icon {
  font-size: 19px;
  line-height: 1.3;
}
/* Mobilde müsaitlik takvimi daha geniş görünsün */
@media (max-width: 768px) {
  .availability-modal-content {
    width: 98vw !important;
    max-width: 98vw !important;
    padding: 18px 10px !important;
    border-radius: 22px !important;
  }

  .availability-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .availability-head h3 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  #availabilityMonth {
    min-width: 150px !important;
    font-size: 14px !important;
    padding: 12px 10px !important;
  }

  .availability-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
  }

  #availabilityCalendarTable th,
  #availabilityCalendarTable td {
    min-width: 118px !important;
    height: 74px !important;
    font-size: 15px !important;
  }

  #availabilityCalendarTable .sticky-room-head,
  #availabilityCalendarTable .sticky-room-cell {
    min-width: 88px !important;
    max-width: 88px !important;
    width: 88px !important;
    font-size: 13px !important;
  }
}
/* Sticky bungalov isimleri - mobil düzeltme */
.availability-scroll {
  position: relative !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
}

#availabilityCalendarTable {
  position: relative !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

#availabilityCalendarTable .sticky-room-head,
#availabilityCalendarTable .sticky-room-cell {
  position: sticky !important;
  left: 0 !important;
  z-index: 50 !important;
  background: #4a4a4a !important;
  color: #fff !important;
  display: table-cell !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#availabilityCalendarTable .sticky-room-head {
  z-index: 80 !important;
  background: #2f7dad !important;
}
.footer-bottom {
  text-align: center;
}

.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
  color: inherit;
}

.developer-credit {
  margin-bottom: 12px;
}

.developer-credit a {
  color: #39ff88;
  font-weight: 700;
  text-decoration: none;
}










