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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header */
.header {
  background: linear-gradient(135deg, #6c63ff, #a855f7);
  padding: 20px;
  text-align: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

/* Chat Button */
.chat-section { text-align: center; padding: 30px 0; }
.chat-btn {
  background: #6c63ff;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.chat-btn:hover { background: #4f46e5; }

/* Chat Container Overlay */
.chat-container {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#coomeet_container { width: 100%; height: 100%; }
.close-btn {
  position: absolute; top: 20px; right: 30px;
  background: #ff4d4d; border: none; color: #fff;
  font-size: 1.4rem; padding: 10px 15px;
  border-radius: 50%; cursor: pointer;
}

/* Content */
.content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.content h1 { font-size: 2rem; margin-bottom: 15px; }
.intro { font-size: 1.1rem; margin-bottom: 20px; }

/* Overview */
.overview { margin: 40px 0; }
.overview h2 { text-align: center; margin-bottom: 20px; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}
.card:hover { background: #e0e7ff; }
.card h3 { margin-bottom: 10px; color: #6c63ff; }

/* Pros & Cons */
.review-img {
  width: 100%;
  max-width: 60%;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
}
.pros-cons {
  display: flex; justify-content: space-between;
  margin: 30px 0; gap: 20px;
}
.pros, .cons {
  flex: 1; background: #f4f4f4;
  padding: 20px; border-radius: 12px;
}
.pros h2, .cons h2 { margin-bottom: 10px; font-size: 1.3rem; }
.review-rating { text-align: center; padding: 20px; }
.stars { font-size: 1.5rem; color: #fbbf24; }

/* FAQ */
.faq-section { margin: 40px 0; }
.faq-section h2 { text-align: center; margin-bottom: 20px; }
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-question {
  width: 100%; text-align: left;
  font-size: 1.1rem; font-weight: bold;
  background: none; border: none;
  cursor: pointer; padding: 10px;
  transition: 0.3s;
}
.faq-question:hover { color: #6c63ff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 10px;
  color: #555;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 8px;
}

/* Footer */
.footer {
  background: #111; color: #bbb;
  text-align: center; padding: 20px;
  margin-top: 40px;
}
.footer nav { margin-bottom: 10px; }
.footer nav a {
  color: #bbb; margin: 0 10px; text-decoration: none;
}
.footer nav a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .review-img { max-width: 100%; }
  .pros-cons { flex-direction: column; }
}

.content-image {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.content-image img {
  width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  border: 4px solid transparent;
  background-image: linear-gradient(90deg, #FF6600, #1E90FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

/* Hover efekti */
.content-image img:hover {
  transform: scale(1.05) rotate(-1deg); /* hafif zoom ve tilt */
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 20px rgba(255,102,0,0.6), 0 0 20px rgba(30,144,255,0.6);
  filter: brightness(1.1);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .content-image img {
    width: 100%;
  }
}
.pros-cons ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.pros ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}
.cons ul li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}
.reviews-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.review {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.review:hover {
  background: #e0e7ff;
}
.review strong {
  display: block;
  margin-bottom: 8px;
  color: #6c63ff;
}
.review p {
  font-size: 0.95rem;
  color: #444;
}
.header .logo {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header .logo:hover {
  color: #ff9800; /* hover rengi */
}
