
/* General styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #1e1e1e, #2c2c2c); /* koyu modern arka plan */
  color: #f5f5f5;
}
/* Navigation Menu */
.nav-menu a {
  color: #2c3e50;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #d4af37;
}

/* Hero Section */
.hero {
  background-color: #cbe6d4;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #2e4e3f;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
  color: #3a3a3a;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4af37;
  color: #2c2c2c;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffcc33;
}

/* Services Section */
.services {
  padding: 40px 20px;
  text-align: center;
  background-color: #eef7f2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background-color: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #3A6351;
}

.service-card a {
  text-decoration: none;
  color: inherit;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link:hover .service-card {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Why Us */
.why-us {
  padding: 50px 20px;
  background-color: #e2f0e8;
  text-align: center;
}

.why-us li {
  margin: 12px 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #2b2b2b;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

/* Page Header */
.page-header {
  background-color: #333;
  color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

/* Form Sections */
.form-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #3b3b3b;
  color: #fff;
  border: 1px solid #555;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form label {
  font-weight: bold;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fdfdfd;
}

.booking-form button.btn {
  background-color: #d4af37;
  color: #2c2c2c;
  font-weight: bold;
  border: none;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.booking-form button.btn:hover {
  background-color: #ffcc33;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  justify-content: space-between;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Auth Link Buttons */
.auth-link {
  background-color: #ffffff22;
  padding: 6px 12px;
  border-radius: 5px;
  margin-left: 10px;
  font-weight: bold;
  color: #ffffff;
  border: 1px solid white;
  transition: background-color 0.3s;
  text-decoration: none;
}

.auth-link:hover {
  background-color: #ffffff44;
}

.video-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 60px 20px;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(209, 209, 209, 0.35); /* %65 saydam siyah overlay */
  z-index: 2;
}

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

.cleaning-header .bg-video,
.cleaning-header .video-overlay {
  height: 550px;
}

.garden-header .bg-video,
.garden-header .video-overlay {
  height: 550px;
}

.seniors-header .bg-video,
.seniors-header .video-overlay {
  height: 500px;
}

.consulting-header .bg-video,
.consulting-header .video-overlay {
  height: 500px;
}

.errands-header .bg-video,
.errands-header .video-overlay {
  height: 450px;
}
.petcare-header .bg-video,
.petcare-header .video-overlay {
  height: 275px;
}
.repairs-header .bg-video,
.repairs-header .video-overlay {
  height: 350px;
}
.services-header .bg-video,
.services-header .video-overlay {
  height: 275px;
}
.contact-header .contact-video,
.contact-header .video-overlay {
  height: 275px;
  margin-top: 0 !important;
}
.lottie-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 10px auto;
}
.nav-menu a {
  color: #2c3e50;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #27ae60;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.auth-link {
  background-color: #27ae60;
  color: white !important;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.auth-link:hover {
  background-color: #219150;
}

/* === Hero Section === */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
    url('images and videos/modern-home.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  animation: fadeInDown 1s ease-in-out;
}

.hero p {
  font-size: 1.3rem;
  margin: 20px 0;
  animation: fadeInUp 1s ease-in-out;
}

.btn {
  background: #27ae60;
  padding: 15px 30px;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
  transition: background 0.3s;
}

.btn:hover {
  background: #219150;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Services Section === */
.services {
  padding: 80px 40px;
  text-align: center;
  background: white;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #27ae60;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #2f2f2f;
  color: #fff;
  border: 2px solid #d4af37;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.2rem;
}

.service-card:hover {
  border-color: #ffcc33;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === Why Us Section === */
.why-us {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #27ae60;
}

.why-us ul li {
  margin: 12px 0;
  font-size: 1.1rem;
}

/* === Footer === */
footer {
  background: rgba(255, 255, 255, 0.05);
  color: #ffcc33;
  text-align: center;
  padding: 15px;
  margin-top: 60px;
}
/* === Services Page Background === */
.services-header .bg-video,
.services-header .video-overlay {
  height: 300px;
}

.video-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* daha koyu, premium görünüm */
}

/* === Modernized Service Cards with Gold Border === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-card {
  background: linear-gradient(135deg, #2c3e50, #3a5a40); /* yumuşak, koyu yeşil-gri ton */
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid #d4af37; /* gold çerçeve */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  border-color: #ffcc33; /* hover'da daha parlak altın */
}

/* Icon Styling */
.service-card .icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f1f1f1;
  min-height: 40px;
}

.service-card p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
  flex-grow: 1;
}

/* Link behavior */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-link:hover .service-card {
  background: linear-gradient(135deg, #3b4b5a, #507d5a);
}
.service-card p {
  font-size: 0.9rem;
  color: #d4af37;
  margin-top: 10px;
}
/* Why Choose Section Modern Look */
.why-us {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c3e50, #3a5a40); /* koyu tonlarda arka plan */
  color: white;
  text-align: center;
  border-top: 2px solid #d4af37; /* gold çizgi */
  border-bottom: 2px solid #d4af37;
}

.why-us h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #d4af37; /* gold başlık */
  position: relative;
}

.why-us h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: #d4af37;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.why-us ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.why-us ul li {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.why-us ul li:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}
/* Hero Section Modern Look */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images and videos/modern-home.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f8f8f8;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #d4af37; /* gold underline */
  margin: 20px auto 0;
  border-radius: 2px;
}

.hero p {
  font-size: 1.4rem;
  color: #e0e0e0;
  max-width: 600px;
  margin-bottom: 30px;
}

/* Button Styling */
.hero .btn {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 16px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-3px);
}
/* === Modern Header === */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  height: 100px; /* sabit yükseklik */
  overflow: hidden;
}
/* Scroll efekt */
.main-header.scrolled {
  background: rgba(30, 30, 30, 0.95);
  padding: 8px 35px;
}

.main-logo {
  height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37; /* gold */
  display: flex;
  align-items: center;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Auth buttons */
.auth-link {
  background-color: #d4af37;
  color: #2b2b2b !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 1px solid transparent;
}

.auth-link:hover {
  background-color: #ffcc33;
}
.main-header.scrolled {
  background: rgba(30, 30, 30, 0.95);
  padding: 8px 35px;
}
/* Scroll Header */
.main-header.scrolled {
  background: rgba(30, 30, 30, 0.75); /* daha şeffaf */
  padding: 6px 30px;
  height: 80px; /* header küçülür */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* Header Logo Size */
.main-logo {
  height: 120px; 
  width: auto;
  flex-shrink: 0;
  transition: height 0.3s ease;
}
.main-header.scrolled .main-logo {
  height: 90px; /* scroll olduğunda logo küçülür */
}
.main-header.scrolled .nav-menu a {
  font-size: 0.9rem;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(43, 43, 43, 0.85);
  backdrop-filter: blur(12px);
  height: 100px;
  z-index: 1000;
}
.main-header .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #d4af37;
  margin-left: 325px;
  white-space: nowrap;
}
/* Modern What We Do Section */
.modern-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c2c2c, #3b3b3b);
  color: #fff;
  text-align: center;
}

.modern-services h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #d4af37; /* gold */
  position: relative;
}

.modern-services h2::after {
  content: '';
  width: 80px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.modern-services .service-card {
  background: #444;
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.modern-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.modern-services .service-card p {
  margin-top: 10px;
  color: #ddd;
  font-size: 0.95rem;
}
/* Küçük ve kutu görünümü için kartlar */
.modern-services .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.modern-services .service-card {
  background: #444;
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 150px;
}

.modern-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.modern-services .service-card p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #ddd;
}
/* Başta sadece başlık görünür */
.modern-services .service-card {
  background: #444;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  transition: all 0.4s ease;
  overflow: hidden;
  height: 60px; /* sadece başlık görünür */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
}

/* Açıklama metni başta görünmez */
.modern-services .service-card p {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease, max-height 0.4s ease;
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #ddd;
}

/* Hover olduğunda kutu genişler ve açıklama görünür */
.modern-services .service-card:hover {
  height: 250px; /* genişler */
  align-items: flex-start;
  padding-top: 15px;
}

.modern-services .service-card:hover p {
  opacity: 1;
  max-height: 100px;
}
/* Başta sadece başlık görünür */
.modern-services .service-card {
  background: #444;
  color: #fff;
  border: 2px solid #d4af37; /* Altın çerçeve korundu */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  transition: all 0.4s ease;
  overflow: hidden;
  height: 60px; /* sadece başlık görünür */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: height 0.7s ease, background 0.7s ease, box-shadow 0.6s ease;
}

/* Açıklama metni başta görünmez */
.modern-services .service-card p {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease, max-height 0.4s ease;
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #fff;
}

/* Hover olduğunda kutu genişler, renk değişir ve açıklama görünür */
.modern-services .service-card:hover {
  height: 250px;
  align-items: flex-start;
  padding-top: 15px;
  background: linear-gradient(135deg, #d4af37, #ffcc33); /* altın tonlu gradyan */
  color: #2b2b2b;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modern-services .service-card:hover p {
  opacity: 1;
  max-height: 100px;
  color: #2b2b2b;
  font-weight: 500;
}
/* Normal nav menü linkleri */
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px;
  transition: color 0.3s ease, font-size 0.3s ease;
}

/* Scroll sırasında linkler küçülür */
.main-header.scrolled .nav-menu a {
  font-size: 0.9rem;
}
.hamburger {
  display: block;
  font-size: 2rem;
  background: none;
  border: none;
  color: #d4af37;
  cursor: pointer;
  margin-left: auto;
  margin-right: 30px;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* Nav menü başta gizli */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background: rgba(43, 43, 43, 0.95);
  border-left: 2px solid #d4af37;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;

  /* Başlangıçta gizle */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.close-menu {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #d4af37;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-menu:hover {
  transform: scale(1.2);
}
.video-header {
  margin-top: 125px; /* header yüksekliği kadar boşluk */
}
.with-fixed-header {
  padding-top: 120px; /* Header yüksekliğine göre ayarlayın */
}
/* === Modern Dashboard Sidebar === */
.dashboard-container {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #2c3e50, #3a5a40);
  color: #fff;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: rgba(43, 43, 43, 0.95);
  backdrop-filter: blur(8px);
  padding: 25px 20px;
  border-right: 2px solid #d4af37;
  display: fixed;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
}

/* Sidebar buttons */
.sidebar .tab-btn {
  width: 100%;
  background: none;
  border: 1px solid transparent;
  color: #fff;
  padding: 12px 15px;
  margin: 8px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar .tab-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
}

.sidebar .tab-btn.active {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Main content */
.content {
  flex-grow: 1;
  padding: 40px;
  background: rgba(43, 43, 43, 0.95);
  color: #fff9f9;
}

/* Profile Image */
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
  margin-bottom: 15px;
}
.sidebar {
  display: flex !important;
  flex-direction: column;
  background: #2c2c2c;
  padding: 20px;
  min-height: calc(100vh - 100px); /* Header'ı çıkar */
  width: 220px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;   /* Sabitle */
  top: 92px;        /* Header yüksekliği */
  left: 0;
  z-index: 900;
}

.sidebar .tab-btn {
  background: none;
  border: none;
  color: #fff;
  padding: 10px;
  text-align: left;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  
}

.sidebar .tab-btn.active,
.sidebar .tab-btn:hover {
  background: #d4af37;
  color: #2b2b2b;
  font-weight: bold;
}
.dashboard-container .content {
  margin-left: 0px;
  padding: 20px;
  width: calc(100% - 240px);
}
.dashboard-container .content {
  margin-left: 240px; /* Sidebar genişliği kadar boşluk bırak */
  padding: 40px;
  width: calc(100% - 240px);
  background: rgba(43, 43, 43, 0.95);
  color: #fff9f9;
}
.dashboard-container {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #2c3e50, #3a5a40);
  color: #fff;
  margin-top: 0px; /* Header yüksekliği kadar boşluk */
}
.hidden {
  display: none !important;
}
/* === Dashboard Form Modern Styling === */
#profile-form {
  background: rgba(60, 60, 60, 0.85);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #d4af37;
  width: 100%;
  max-width: 900px;  /* 🔥 Daha geniş form */
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr)); /* Kutucuklar için min. genişlik */
  gap: 30px 40px; /* 🔥 Satırlar arası ve sütunlar arası boşluk */
  margin: 0 auto; /* Ortalamak için */
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group input,
.form-group textarea {
  width: 100%;
}

#profile-form .address-group {
  grid-column: 1 / -1; /* Tüm sütunlara yayıl */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* İçeriği ortala */
}

#profile-form .address-group label {
  align-self: center; /* Label'ı ortala */
  margin-bottom: 8px;
}

#profile-form .address-group textarea {
  width: 80%; /* Ortada ve geniş */
  max-width: 600px;
  margin: 0 auto;
  display: block;
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
}

#profile-form .address-group textarea:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

#profile-form label {
  align-self: flex-start;
  font-weight: 600;
  color: #d4af37;
  margin-top: 10px;
}

#profile-form input[type="text"],
#profile-form input[type="date"],
#profile-form input[type="tel"],
#profile-form input[type="email"],
#profile-form textarea {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  width: 100%;
}

#profile-form input:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

#profile-form button[type="submit"] {
  grid-column: span 2;
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
  width: 200px; /* 🔥 Buton daha kompakt */
  justify-self: center; /* Ortalamak için */
}

#profile-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-2px);
}
/* İçeriği ortalamak için */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px); /* Header yüksekliği çıkar */
  padding: 40px;
}
#profile-form textarea#address {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  resize: none;
  transition: border 0.3s, background 0.3s;
}

#profile-form textarea#address:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}
/* Language & Notification styling */
#profile-form select,
.notification-options input[type="checkbox"] {
  margin-top: 5px;
}

.notification-options label {
  font-weight: normal;
  color: #ccc;
  display: block;
  margin-bottom: 10px;
}

/* Section title */
#profile-form h3 {
  color: #d4af37;
  margin-top: 25px;
  font-size: 1.2rem;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

/* Change password inputs */
#profile-form input[type="password"] {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  transition: border 0.3s, background 0.3s;
}

#profile-form input[type="password"]:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

#change-password-btn {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

#change-password-btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-2px);
}
/* Preferences Section */
.preferences-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preferences-form {
  background: rgba(60, 60, 60, 0.85);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #d4af37;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.preferences-form label {
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 5px;
}

.preferences-form select {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
}

.preferences-form select:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.notification-options label {
  font-weight: normal;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.preferences-form button.btn {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.preferences-form button.btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-2px);
}
/* Security Section */
.security-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.security-form {
  background: rgba(60, 60, 60, 0.85);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #d4af37;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.security-form label {
  font-weight: 600;
  color: #d4af37;
}

.security-form input[type="password"] {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
}

.security-form input[type="password"]:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.security-form button.btn {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.security-form button.btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-2px);
}
.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #555;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

.hidden {
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.verify-box {
  background-color: #333;
  color: #ffcc33;
  border: 1px solid #ffcc33;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  animation: fadeIn 0.5s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(60, 60, 60, 0.9);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #d4af37;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}


.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form label {
  font-weight: 600;
  color: #d4af37;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  transition: border 0.3s, background 0.3s;
}
.booking-form textarea#details {
  height: 100px; /* 3 satır büyüklüğü */
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.booking-form button.btn {
  grid-column: span 2;
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
}

.booking-form button.btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-2px);
}
#dynamic-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
#dynamic-options select,
#dynamic-options textarea {
  width: 100%;
  background: #2b2b2b;
  color: white;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
}

#dynamic-options div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #555;
  border-radius: 10px;
  padding: 15px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

#dynamic-options div:hover {
  background: rgba(255, 215, 0, 0.1);
}
.booking-form select,
.booking-form input,
.booking-form textarea {
  transition: all 0.3s ease-in-out;
}

.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
#dynamic-options div {
  opacity: 0;
  transform: translateY(-10px);
  animation: slideFadeIn 0.4s forwards;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.booking-form {
  animation: formFade 0.5s ease-in-out;
}

@keyframes formFade {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}
#dynamic-options select,
#dynamic-options textarea {
  transition: all 0.3s ease;
}

#dynamic-options select:focus,
#dynamic-options textarea:focus {
  transform: scale(1.01);
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
.booking-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: 600;
  animation: slideIn 0.5s ease-out;
  z-index: 9999;
}

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

.hidden {
  display: none;
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(135deg, #2c3e50, #3a5a40);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.8s ease-out;
}

.contact-card {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.contact-card p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-card i {
  margin-right: 10px;
  color: #ffcc33;
}

.modern-form {
  flex: 1;
  min-width: 280px;
  background: rgba(60, 60, 60, 0.85);
  padding: 30px;
  border-radius: 15px;
  color: white;
  border: 1px solid #d4af37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.7s ease;
}

.modern-form h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  background: #2b2b2b;
  color: white;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  transition: border 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #333;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.btn {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: auto;
}

.btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ffe27a);
  transform: translateY(-2px);
}

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.map-section {
  max-width: 1030px;
  height: 520px;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(135deg, #2c3e50, #3a5a40);
  border: 1px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.map-section h2 {
  color: #d4af37;
  margin-bottom: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit; /* Yazı rengini bozmamak için */
}
body.contact-page .page-header {
  position: relative;
  display: inline-block; /* Header yüksekliği videoya göre otomatik olur */
  width: 100%;
  height: auto !important;
  padding: 0;
  margin: 0;
}

body.contact-page .page-header .contact-video {
  display: block;
  width: 100%;
  height: 550px;   /* Oranı bozmadan küçült */
  object-fit: cover; /* Video kırpılmasın */
}

body.contact-page .page-header .video-overlay {
  height: 100%;
  width: 100%;
}
body.contact-page .contact-header .contact-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
}

body.contact-page .contact-header .contact-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

body.contact-page .contact-header .contact-text p {
  font-size: 1rem;
}
body.contact-page .with-fixed-header {
  padding-top: 0 !important; /* header ile boşluğu sıfırla */
}
/* Boşluğu kaldır */
body.contact-page .video-header {
  margin-top: 15 !important;
}

body.contact-page.with-fixed-header {
  padding-top: 0 !important;
}

/* Contact sayfası video tam kapsama */
body.contact-page .contact-header {
  position: relative;
  width: 100%;
  height: 550px; /* Cleaning ile aynı yükseklik */
  overflow: hidden;
}

body.contact-page .contact-header .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Cleaning overlay gibi */
  z-index: 2;
}

body.contact-page .contact-header .contact-text {
  position: relative;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
/* Contact sayfası için dar ve yatay video header */
body.contact-page .contact-header {
  position: relative;
  width: 100%;
  height: 275px; /* Dar bir header */
  overflow: hidden;
}

body.contact-page .contact-header .contact-video {
  width: 100vw !important;   /* Tam viewport genişliği */
  max-width: 100% !important;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  object-fit: cover;
}

body.contact-page .contact-header .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Hafif karartma */
  z-index: 2;
}

body.contact-page .contact-header .contact-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
  width: 90%; /* uzun metinler taşmasın */
}
body.contact-page .contact-header .contact-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
body.contact-page .contact-header .contact-text p {
  font-size: 1rem;
}
/* Sadece contact sayfasındaki video header için boşluğu kaldır */
body.contact-page .video-header {
  margin-top: 65px !important; /* veya 0 yapabilirsin */
}
/* === Support Chat Widget === */
.support-widget { position: fixed; right: 20px; bottom: 20px; z-index: 99999; }

.support-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid #d4af37; background: linear-gradient(135deg,#2c3e50,#3a5a40);
  color: #fff; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .3s ease;
}
.support-toggle:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.35); }

.support-box {
  width: 340px; height: 460px; display: none; overflow: hidden;
  background: rgba(43,43,43,.96); backdrop-filter: blur(8px);
  border: 1px solid #d4af37; border-radius: 16px; box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.chat-header { 
  flex: 0 0 auto;           /* 🔴 sabit yükseklikli başlık */
  height: 54px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
  background: linear-gradient(135deg,#d4af37,#ffcc33);
  color:#2b2b2b; font-weight: 700; letter-spacing:.2px;
}

.chat-messages {
  /* height: 340px;  ← BUNU SİL */
  flex: 1 1 auto;           /* 🔴 kalan alanı kullansın */
  min-height: 0;            /* 🔴 flex konteynerde taşmayı önler */
  overflow-y: auto;
  padding: 12px;
  background: #1f1f1f;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Baloncuklar (mevcutta .msg var; tonlarını netleştirelim) */
.msg { font: 14px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  padding:10px 12px; border-radius:14px; max-width:78%; word-wrap:break-word; }
.msg.user  { background:#e8f0fe; color:#0b132a; align-self:flex-end; }
.msg.agent { background:#2c2c2c; color:#f1f1f1; align-self:flex-start; border:1px solid #3a3a3a; }

.chat-input {
  flex: 0 0 auto;           /* 🔴 her zaman görünür kalsın */
  display: flex; gap: 8px; align-items: center;
  padding: 10px; background:#262626; border-top:1px solid #3a3a3a;
}
.chat-input input {
  flex: 1; padding: 10px 12px; border-radius: 10px; border:1px solid #4b4b4b;
  background:#1b1b1b; color:#f5f5f5; outline: none;
}
.chat-input input::placeholder { color:#9a9a9a; }

.chat-send {
  background: linear-gradient(135deg,#d4af37,#ffcc33);
  color:#2b2b2b; font-weight:700; border:none; border-radius: 10px; padding:10px 14px; cursor:pointer;
  transition: transform .15s ease, filter .2s ease;
}
.chat-send:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Küçük ekran optimizasyonu */
@media (max-width: 420px) {
  .support-box { width: calc(100vw - 24px); height: 60vh; right: 12px; bottom: 12px; }
}
.badge {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #1f6feb;
  color: #fff;
  margin-left: 6px;
}
.badge{
  font-size:11px; padding:2px 6px; border-radius:999px;
  background:#1f6feb; color:#fff; margin-left:6px;
}
.toolbar .chip { margin-left:6px; cursor:pointer; }
.chip.gray   { background:#2a2f36; }
.chip.green  { background:#2f6f3a; }
.chip.orange { background:#7a5620; }
.chip.red    { background:#5a2430; }
.select {
  border:1px solid var(--soft); border-radius:8px; background:#0f1216; color:var(--text);
  padding:6px 8px;
}
.unread-dot{
  display:inline-block; width:8px; height:8px; border-radius:50%; background:#1f6feb; margin-left:6px;
}
/* ===========================
   Agent Panel (scoped styles)
   =========================== */
body.agent {
  /* panel teması */
  --bg:#0f1216; --panel:#12161c; --border:#1b1f26; --soft:#2a2f36;
  --text:#eaecef; --muted:#9aa4af; --accent:#1f6feb; --chip:#263043;

  margin:0;
  font:14px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background: var(--bg);
  color: var(--text);
}

/* layout: LEFT chat list, RIGHT header + 2-col (messages | composer) */
body.agent .wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 100vh;
}

/* LEFT: chat list */
body.agent .left {
  border-right: 1px solid var(--border);
  overflow: auto;
  background: var(--panel);
  min-width: 320px;
  z-index: 11;
}
body.agent .topbar {
  height:52px; display:flex; align-items:center; justify-content:space-between;
  padding:0 12px; border-bottom:1px solid var(--border); background:var(--panel);
  position: sticky; top:0; z-index:1;
}
body.agent .topbar strong { font-weight:700; }
body.agent .chip { font-size:12px; padding:2px 8px; border:1px solid var(--soft); border-radius:999px; background:var(--chip); color:#fff; }
body.agent .search { padding:10px; border-bottom:1px solid var(--border); display:flex; gap:8px; align-items:center; }
body.agent .search input { flex:1; padding:8px 10px; border:1px solid var(--soft); border-radius:8px; background:#0f1216; color:var(--text); outline:none; }
body.agent .select { border:1px solid var(--soft); border-radius:8px; background:#0f1216; color:var(--text); padding:6px 8px; }

body.agent .chatlist { list-style:none; margin:0; padding:0; }
body.agent .chatlist li { padding:10px 12px; border-bottom:1px solid var(--border); cursor:pointer; display:flex; align-items:center; gap:8px; }
body.agent .chatlist li:hover { background:#141b23; }
body.agent .chatlist li.active { background:#18202b; }
body.agent .avatar { width:28px; height:28px; border-radius:50%; background:#223047; display:flex; align-items:center; justify-content:center; font-weight:700; color:#cfe1ff; }
body.agent .meta { display:flex; flex-direction:column; gap:2px; }
body.agent .meta .uid { font-weight:600; }
body.agent .meta .sub { font-size:12px; color:var(--muted); }
body.agent .badge { font-size:11px; padding:2px 6px; border-radius:999px; background:#1f6feb; color:#fff; margin-left:6px; }
body.agent .unread-dot { display:inline-block; width:8px; height:8px; border-radius:50%; background:#1f6feb; margin-left:6px; }

body.agent .overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 9;
}
body.agent .overlay.show { display:block; }

/* RIGHT: header */
body.agent .right { display:grid; grid-template-rows:52px 1fr; min-width:0; }
body.agent .head { display:flex; align-items:center; justify-content:space-between; padding:0 12px; border-bottom:1px solid var(--border); background:var(--panel); }
body.agent .head .title { display:flex; align-items:center; gap:10px; }
body.agent .head .title .dot { width:10px; height:10px; border-radius:50%; background:#3fb950; }
body.agent .toolbar .chip { margin-left:6px; cursor:pointer; }
body.agent .chip.gray{background:#2a2f36} 
body.agent .chip.green{background:#2f6f3a} 
body.agent .chip.orange{background:#7a5620} 
body.agent .chip.red{background:#5a2430}

/* RIGHT content: two columns (messages | composer) */
body.agent .agent-content {
  display:grid;
  grid-template-columns: 1fr 340px; /* solda mesajlar, sağda composer */
  gap:12px; padding:12px; min-height:0;
}

/* Messages (left column) */
body.agent .msgs-wrap {
  border:1px solid var(--border); border-radius:12px; background:var(--panel);
  display:flex; flex-direction:column; min-height:0;
}
body.agent .msgs {
  overflow:auto; padding:16px 14px; display:flex; flex-direction:column; gap:8px; background:var(--bg);
  border-radius:12px; flex:1;
}
body.agent .msg { max-width:72%; padding:10px 12px; border-radius:12px; word-wrap:break-word; }
body.agent .msg.user  { align-self:flex-end; background:var(--accent); color:#fff; }
body.agent .msg.agent { align-self:flex-start; background:#1b1f24; color:var(--text); border:1px solid var(--soft); }

/* Composer (right column) */
body.agent .composer {
  border:1px solid var(--border); border-radius:12px; background:var(--panel);
  padding:12px; display:flex; flex-direction:column; gap:10px;
}
body.agent .composer .title { font-weight:600; font-size:13px; color:var(--muted); }
body.agent .composer input {
  padding:11px 12px; border-radius:10px; border:1px solid var(--soft); background:#0f1216; color:#eaecef; outline:none;
}
body.agent .composer button {
  padding:10px 14px; border-radius:10px; border:1px solid var(--soft); background:#263043; color:#fff; cursor:pointer;
}
body.agent .composer button:hover { filter:brightness(1.05); }
body.agent .tips { font-size:12px; color:var(--muted); }

/* Responsive */
@media (max-width:1080px){
  body.agent .agent-content { grid-template-columns: 1fr; }
  body.agent .composer { order:-1; } /* üstte */
}
@media (max-width: 920px) {
  body.agent .left {
    position: fixed;
    inset: 0 auto 0 0;
    max-width: 480px;
    z-index: 10;
    transform: translateX(-100%);
    transition: transform .25s ease;
  }
  body.agent .left:not(.hidden) {
    transform: translateX(0);
  }
}
/* Agent panel: masaüstünde hidden sınıfı görünümü kapatmasın */
body.agent .left.hidden {
  display: block !important; /* global hidden'ı ez */
}

/* Sadece mobilde (920px altı) hidden paneli gizlesin */
@media (max-width: 920px) {
  body.agent .left.hidden {
    transform: translateX(-100%); /* gizle */
  }
}
/* === Agent login overlay === */
.login-wrap{
  position: fixed; inset:0; display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.45); z-index: 9999; padding: 16px;
}
.login-card{
  width: 100%; max-width: 360px; background: #12161c; color:#eaecef;
  border:1px solid #1b1f26; border-radius: 12px; padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.login-card h2{ margin:0 0 4px 0; }
.login-card .muted{ color:#9aa4af; margin:0 0 12px 0; font-size: 13px; }
.login-card label{ display:block; font-size:12px; color:#9aa4af; margin:10px 0 6px; }
.login-card input {
  width: calc(100% - 10px); /* kenarlardan 5px boşluk bırakmak için */
  padding: 10px;
  padding-left: 14px;       /* soldan biraz içeri al */
  margin-left: 5px;         /* tüm kutuyu sağa kaydır */
  box-sizing: border-box;   /* genişlik taşmasını engelle */
}
.login-card button{
  width: calc(100% - 10px); /* kenarlardan 5px boşluk bırakmak için */
  padding: 10px;
  padding-left: 14px;       /* soldan biraz içeri al */
  margin-left: 5px;         /* tüm kutuyu sağa kaydır */
  box-sizing: border-box;   /* genişlik taşmasını engelle */
}
.login-actions{ display:flex; gap:10px; margin-top:8px; }
.login-actions .link{
  flex:1; background:transparent; border:1px dashed #2a2f36; color:#9aa4af;
}
.err{ margin-top:10px; font-size:12px; color:#ffb3b3; }
.hidden{ display:none !important; }
/* === Agent Login (overlay) === */
body.agent .login-wrap{
  position: fixed; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 99999;
}

body.agent .login-card{
  width: min(420px, calc(100vw - 32px));
  background: rgba(43,43,43,.96);
  border: 1px solid #d4af37;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  padding: 24px;
  color: #fff;
  animation: loginPop .18s ease-out;
}

@keyframes loginPop{
  from{ transform: translateY(6px); opacity: .6; }
  to  { transform: translateY(0);   opacity: 1; }
}

body.agent .login-card h2{
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  color: #d4af37;
}

body.agent .login-card .muted{
  color: #cfcfcf; opacity: .85; margin-bottom: 14px;
  font-size: .95rem;
}

body.agent .login-card label{
  display:block; margin: 10px 0 6px; font-weight: 600; color: #d4af37;
}

body.agent .login-card input{
  width: 100%; padding: 11px 12px;
  background: #2b2b2b; color: #fff;
  border: 1px solid #555; border-radius: 10px; outline: none;
  transition: border .2s, box-shadow .2s, transform .08s;
}
body.agent .login-card input:focus{
  border-color: #d4af37; background:#333;
  box-shadow: 0 0 6px rgba(212,175,55,.45);
  transform: translateY(-1px);
}

body.agent #btnLogin{
  width: 100%; margin-top: 14px;
  padding: 12px 14px; border: none; border-radius: 12px; cursor: pointer;
  font-weight: 700; color: #2b2b2b;
  background: linear-gradient(135deg,#d4af37,#ffcc33);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .12s, filter .2s;
}
body.agent #btnLogin:hover{ transform: translateY(-1px); filter: brightness(1.04); }
body.agent #btnLogin:active{ transform: translateY(0); }

body.agent .login-actions{
  margin-top: 10px; display:flex; gap:10px; justify-content: space-between; flex-wrap: wrap;
}
body.agent .login-actions .link{
  background: none; border: none; padding: 6px 0; cursor: pointer;
  color: #ffcc33; font-weight: 600; text-decoration: underline;
}

body.agent .login-card .err{
  margin-top: 10px; padding: 10px 12px;
  background: #3a2a2a; color: #ffd4d4;
  border: 1px solid #7a3a3a; border-radius: 10px;
  font-size: .92rem;
}

/* util */
.hidden{ display: none !important; }
/* Seen indicator (kullanıcı son mesajının altında) */
.chat-messages .msg { position: relative; }
.seen-indicator{
  font-size: 12px;
  color: #9aa4af;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.9;
}
.seen-indicator .ticks{
  font-weight: 700;
  line-height: 1;
}
#messages .seen-indicator{
  font-size: 11px;
  color: #9aa4af;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#messages .seen-indicator .ticks{
  font-weight: 700;
  letter-spacing: 1px;
}
.support-toggle {
  position: relative;
}

#support-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e02424; /* kırmızı */
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff; /* kenar temiz görünsün */
  display: none;
}
/* Rozet sol-üstte görünsün */
.support-toggle { position: relative; }

#support-badge{
  position: absolute;
  top: -12px;         /* sol üst */
  left: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e02424; /* kırmızı */
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff; /* arka planla ayrışsın */
  display: none; /* default gizli */
}

/* Panel kapalıyken unread varsa kırmızı çerçeve + hafif glow */
.support-box.unread{
  border: 2px solid #e02424 !important;
  box-shadow: 0 0 8px rgba(224,36,36,.55);
}
/* Widget sayfanın köşesinde kalsın, tüm sayfayı kaplamasın */
.support-widget{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: auto;
  height: auto;
  z-index: 9999; /* header'ı örtmesin istersen 1000 civarı da olur */
}

/* Sohbet kutusu: butonun üstünde açılır, genişliği sınırlı */
.support-box{
  display: none;            /* JS 'open' class'ını ekleyince açacağız */
  position: absolute;
  right: 0;
  bottom: 48px;
  width: 320px;
  max-height: 60vh;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  flex-direction: column;   /* flex yönünü burada tutuyoruz */
  overflow: hidden;         /* dışarı taşanı kes */
}
.support-box.open{
  display: flex;            /* 🔴 artık burada */
}
/* Butonun sol-üstünde kırmızı rozet */
.support-toggle { position: relative; }

#support-badge{
  position: absolute;
  top: -4px;
  left: -4px;
  height: 16px;
  min-width: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e11d48;      /* kırmızı ama küçük */
  color: #fff;
  font: 700 10px/16px system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 0 0 2px #fff;
  display: none;
  width: auto;               /* olası global genişlikleri kır */
}

/* Okunmamış varken kırmızı çerçeve */
.support-box.unread{
  border: 2px solid #e02424 !important;
  box-shadow: 0 0 8px rgba(224,36,36,.55);
}
.security-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.sec-card{display:block;padding:16px;border:1px solid #eee;border-radius:12px;text-decoration:none;color:inherit;box-shadow:0 2px 8px rgba(0,0,0,.05)}
.sec-card:hover{box-shadow:0 6px 18px rgba(0,0,0,.08)}
.sec-card h3{margin:0 0 8px}
.sec-card p{margin:0;color:#666}
/* Alt menü stilleri */
.sidebar .has-sub {
  display:flex; align-items:center; justify-content:space-between;
}
.sidebar .chev { opacity:.6; font-size:.9em; transition:transform .15s ease; }
.sidebar .has-sub[aria-expanded="true"] .chev { transform:rotate(180deg); }

.sidebar .submenu {
  margin: 4px 0 10px 12px;
  display: grid;
  gap: 8px;
}

.sidebar .sub-link {
  display: block;
  font-size: .92rem;
  color: #fff;                    /* başlangıçta beyaz */
  text-decoration: none;
  padding: 6px 10px;              /* kutu hissi için boşluk */
  border: 1px solid transparent;  /* hover'da sarı çerçeve gelecek */
  border-radius: 8px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* Hover & klavye için focus görünümü */
.sidebar .sub-link:hover,
.sidebar .sub-link:focus-visible {
  color: #111; /* siyah yazı */
  background: linear-gradient(135deg, #d4af37, #ffcc33); /* sarı kutu */
  border-color: #d4af37;
  text-decoration: none;
}
.submenu[hidden] { display: none !important; }
/* Security butonu açıkken de sarı görünsün */
.sidebar .has-sub.active {
  background: linear-gradient(135deg, #d4af37, #ffcc33);
  color: #2b2b2b;
}
/* Custom hero background */
.custom-hero {
  position: relative;
  /* Yalnız dikeyde büyüt, üstten sabitle */
  background: url('images and videos/fotograflar_yanyana_v2_2560.jpg') top center no-repeat;
  background-size: 100% calc(100% + 0px); /* ↑ sadece alta doğru +40px kadar uzat */
  height: 55vh;               /* hero sabit kalsın */
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.custom-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* %30 siyah overlay → fotoğraf %70 görünür */
  z-index: 1;
}

.custom-hero h1,
.custom-hero p,
.custom-hero .btn {
  position: relative;
  z-index: 2; /* overlay’in üstünde görünsün */
}
/* ===== Login sayfası alt linkleri ===== */
.login-links{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .95rem;
  align-items: center;
}

.login-links .sep{
  color: #cfcfcf;
  opacity: .7;
}

.login-link{
  color: #d4af37;                 /* açık altın tonunda metin */
  text-decoration: none;
  padding: 6px 10px;              /* küçük “pill” boşluğu */
  border-radius: 999px;           /* yuvarlak hat */
  border: 1px solid transparent;  /* hover'da altın çerçeve gelecek */
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}

.login-link:hover,
.login-link:focus-visible{
  color: #2b2b2b;  /* siyah metin */
  background: linear-gradient(135deg, #d4af37, #ffcc33); /* altın kutu */
  border-color: #d4af37;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* Invalid alan vurgusu (native balonla birlikte) */
input:invalid:focus {
  border-color: #f01216 !important;
  box-shadow: 0 0 0 3px rgba(226, 25, 29, 0.836);
}
/* ===== Login toast ===== */
.toast{
  position: fixed;
  top: 20px; right: 20px;
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(34,34,34,.95);
  color: #fff;
  border: 1px solid #d43737;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast-icon{ font-size: 1.1rem; }
.toast-close{
  background: transparent; border: 0; color: #ffec99;
  font-size: 1.1rem; cursor: pointer; margin-left: 6px;
}
.toast-close:hover{ color:#fff; }
/* ===== ABOUT PAGE ===== */

/* Container helper */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.about-hero {
  position: relative;
  height: 48vh;
  min-height: 320px;
  margin-top: 0px; /* fixed header boşluğu */
  background:
    linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
    url('images and videos/fotograflar_yanyana_v2_2560.jpg') center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.about-hero__overlay { display:none; } /* gerekirse ikinci bir overlay için */
.about-hero__content h1{
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: .3px;
  margin: 0 0 10px;
  text-shadow: 0 6px 20px rgba(0,0,0,.45);
}
.about-hero__content p{
  opacity: .9;
  margin-bottom: 18px;
}

/* SPLIT */
.about-split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  margin: 60px auto;
}
.about-split .split-media img{
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 2px solid #d4af37;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.about-split .split-text h2{ color:#d4af37; margin-top:0; }
.check-list{ list-style:none; padding:0; margin:14px 0 0; }
.check-list li{
  margin: 8px 0;
  padding-left: 26px;
  position: relative;
}
.check-list li::before{
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: #ffcc33; font-weight: 800;
}

/* STATS */
.about-stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(160px,1fr));
  gap: 18px; margin: 10px auto 70px;
}
.stat{
  background: rgba(255,255,255,.05);
  border: 1px solid #d4af37;
  border-radius: 14px;
  padding: 22px 16px;
  text-align:center;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.stat-number{ font-size: 1.8rem; font-weight: 800; color:#ffcc33; }
.stat-label{ opacity: .9; }

/* VALUES */
.about-values{ margin: 10px auto 50px; }
.about-values h2{ text-align:center; color:#d4af37; margin-bottom: 24px; }
.values-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
}
.value-card{
  background: linear-gradient(135deg,#2c3e50,#3a5a40);
  color:#fff;
  border: 2px solid #d4af37;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition:.25s ease;
}
.value-card:hover{
  border-color:#ffcc33;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* PROCESS */
.about-process{ margin: 40px auto 70px; }
.about-process h2{ text-align:center; color:#d4af37; margin-bottom: 18px; }
.process{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px;
}
.process li{
  background: rgba(255,255,255,.05);
  border: 1px solid #555;
  border-radius: 12px;
  padding: 18px; text-align:center;
}
.process .step{
  display:inline-grid; place-items:center;
  width: 36px; height:36px; border-radius:50%;
  background: linear-gradient(135deg,#d4af37,#ffcc33);
  color:#2b2b2b; font-weight:800; margin-bottom: 8px;
}

/* CTA */
.about-cta{
  background: linear-gradient(135deg,#2c3e50,#3a5a40);
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  padding: 50px 0;
  color:#fff;
  text-align:center;
}
.about-cta .cta-inner h2{ margin:0 0 6px; color:#ffcc33; }
.about-cta .btn{ margin-top: 10px; }

/* Responsive */
@media (max-width: 960px){
  .about-split{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .about-hero__content h1{ font-size: 2.2rem; }
  .about-stats{ grid-template-columns: repeat(2,1fr); }
}
/* ========== Cleaning page enhancements ========== */
.container{max-width:1100px;margin:0 auto;padding:0 20px;}
.section-tight{margin:56px auto;}
.center{text-align:center}.muted{opacity:.8}.sm-note{font-size:.92rem}

/* header video overlayi biraz aydınlat (çok karanlık olmasın) */
.video-header .video-overlay{background:rgba(0,0,0,.35);} /* 0.35 ≈ %65 görünür video */

/* --- features --- */
.sec-title{color:#d4af37;text-align:center;margin:0 0 18px;}
.features-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px
}
.feature{
  background:rgba(255,255,255,.05);
  border:1px solid #444;border-radius:14px;padding:18px;text-align:center;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feature:hover{transform:translateY(-6px);box-shadow:0 10px 20px rgba(0,0,0,.18);border-color:#d4af37}
.feature-icon{font-size:1.6rem;margin-bottom:8px}

/* --- pricing --- */
.pricing-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px
}
.price-card{
  background:rgba(255,255,255,.04);
  border:1px solid #d4af37;border-radius:16px;padding:20px;position:relative;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.price-card .btn{
  margin-top: auto;           /* ⬅️ butonu dikeyde karta “en alta” iter */
  align-self: center;         /* ⬅️ yatayda ortala */
  width: 85%;                 /* ⬅️ kart genişliğinin %85’i kadar olsun */
  max-width: 240px;           /* ⬅️ çok geniş ekranlarda taşmasın */
  text-align: center;         /* ⬅️ metni ortala */
}
.price-card:hover{transform:translateY(-6px);box-shadow:0 14px 26px rgba(0,0,0,.2);border-color:#d4af37}
.price-card.featured{border:2px solid #d4af37;box-shadow:0 16px 30px rgba(212,175,55,.2)}
.price-badge{
  position:absolute;top:-12px;left:16px;background:linear-gradient(135deg,#d4af37,#ffcc33);
  color:#2b2b2b;font-weight:800;padding:4px 10px;border-radius:999px;font-size:.85rem
}
.price{font-size:2rem;font-weight:800;color:#ffcc33;margin:6px 0 10px}
.price-sub{font-size:.9rem;color:#ddd}
.price-list{list-style:none;padding:0;margin:0 0 14px}
.price-list li{margin:6px 0}
.w-full{display:block;width:100%}

/* --- before/after slider (range ile) --- */
.ba-wrap{position:relative;border-radius:16px;overflow:hidden;border:1px solid #555}
.ba-img{display:block;width:100%;height:360px;object-fit:cover}
.ba-after{position:absolute;inset:0;overflow:hidden;clip-path:inset(0 50% 0 0)}
.ba-after .ba-img{width:200%} /* yüksek çöz. toleransı */
.ba-range{position:absolute;left:0;right:0;bottom:10px;margin:auto;width:60%;
  -webkit-appearance:none;appearance: none;background:rgba(0,0,0,.35);height:4px;border-radius:999px}
.ba-range::-webkit-slider-thumb{ -webkit-appearance:none;appearance: none;width:18px;height:18px;border-radius:50%;
  background:linear-gradient(135deg,#d4af37,#ffcc33);border:2px solid #222;cursor:ew-resize}

/* --- testimonials --- */
.testi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.testi{
  background:rgba(255,255,255,.06);border:1px solid #444;border-radius:14px;padding:16px;
  font-style:italic
}
.testi cite{display:block;margin-top:8px;opacity:.9;font-style:normal}

/* --- faq --- */
.faq details{
  background:rgba(255,255,255,.05);border:1px solid #444;border-radius:12px;
  padding:12px 14px;margin:10px 0
}
.faq summary{cursor:pointer;font-weight:700}
.faq p{margin:8px 0 0}

/* --- bottom cta --- */
.cleaning-cta{
  background:linear-gradient(135deg,#2c3e50,#3a5a40);
  border-top:2px solid #d4af37;border-bottom:2px solid #d4af37;color:#fff;text-align:center;
  padding:42px 0;margin-top:24px
}
.cleaning-cta .btn{margin-top:10px}

/* --- sticky book (mobile) --- */
.sticky-book{
  position:fixed;right:18px;bottom:18px;z-index:9000;
  background:linear-gradient(135deg,#d4af37,#ffcc33);color:#2b2b2b;font-weight:800;
  padding:10px 14px;border-radius:999px;border:0;text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
@media (min-width:900px){ .sticky-book{display:none} }
/* Tek fiyat kartını ortala ve genişliği sınırla */
.pricing-grid.one-card{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;     /* yatayda ortala */
  max-width: 320px;          /* bölüm içinde daha dar alan */
  margin-inline: auto       /* bölümü ortala */
}

.pricing-grid.one-card .price-card{
  width: 110%;
  max-width: 520px;          /* kartın kendi maksimumu */
}
.trust-bar{
  display:flex; gap:.75rem; justify-content:center; align-items:center;
  margin-top: .75rem; opacity:.9; font-size:.95rem;
}
.trust-bar .sep{opacity:.5}

.cta-row{
  display:flex; gap:.75rem; justify-content:center;
  margin-top:1rem;
}

.btn-ghost{
  background:transparent; border:1px solid #f2c24f; color:#f2c24f;
}
.btn-ghost:hover{ background:rgba(242,194,79,.08); }
.faq-search { max-width:720px; margin:0 auto; }
.faq-search input{
  width:100%; padding:.85rem 1rem; border-radius:12px;
  border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.03);
}
.faq-search input:focus{ outline:0; border-color:#f2c24f; box-shadow:0 0 0 3px rgba(242,194,79,.15); }

.faq-grid{
  display:grid; gap:1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* FAQ links — modern, theme-aware */
.faq a{
  color:#f2c24f;                    /* tema sarısı */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.faq a:visited{ color:#f4d269; }     /* okunmuş link için daha açık sarı */

.faq a:hover,
.faq a:focus-visible{
  color:#111;                       /* koyu zemin üzerinde okunaklı */
  background:#f2c24f;               /* sarı zemin */
  border-radius:8px;
  padding:.1rem .35rem;             /* küçük “pill” etkisi */
  text-decoration:none;
  box-shadow:0 0 0 3px rgba(242,194,79,.25);
  outline:none;
}
/* FAQ grid: kutular esnemeMESİN */
.faq-grid.faq{ 
  align-items: start;         /* stretch yerine start */
}
.faq-grid.faq details{
  align-self: start;          /* tek tek de garanti altına al */
}

/* Açık olan kutu vurgusu */
.faq-grid.faq details[open]{
  border-color: #f2c24f;                   /* gold */
  box-shadow: 0 0 0 2px rgba(242,194,79,.25);
}
.faq-grid.faq details[open] > summary{
  color: #f2c24f;
}
.end-chat-btn {
  border: none; background: transparent; cursor: pointer;
  font-size: 14px; padding: 4px 6px; opacity: .8;
}
.end-chat-btn:hover { opacity: 1; }
