@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* ================== Animasyon ================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact-header h2 {
  color: #f5f5f5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 20px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.contact-modal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  margin: 10px auto 0;
  width: min(1040px, 95%);
  animation: slideIn 0.6s ease forwards;
  background: rgba(30, 30, 30, 0.35);
  backdrop-filter: blur(14px);
}

/* Sosyal simgeler */
.contact-social-icons {
  text-decoration: none;
}
.contact-social-icons img {
  width: 30px;
  height: 30px;
  margin: 5px;
  transition: transform 0.2s ease;
}
#facebook-icon:hover img,
#instagram-icon:hover img,
#youtube-icon:hover img,
#mesaj-icon:hover img {
  transform: scale(1.1);
}

/* Sol bilgi alanı */
.contact-info {
  color: #fff;
  margin: 10px 0;
  font-size: clamp(14px, 1.4vw, 18px);
  width: 50%;
  padding-right: 20px;
}
.contact-info p {
  margin: 10px 0;
}
.contact-info strong {
  display: inline-block;
  margin-bottom: 5px;
  font-size: inherit;
}

/* Sağ form */
.contact-form {
  width: 50%;
  color: #fff;
}
.contact-form label {
  display: block;
  margin: 10px 0 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  background: #d4d4d4;
  border-radius: 8px;
  margin-bottom: 14px;
  resize: none;
}
.contact-form button {
  padding: 10px 20px;
  background: #162938;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background: #1f3b50;
}

@media (max-width: 1200px) {
  .contact-modal {
    flex-wrap: wrap;
    max-height: 63vh;
    overflow: auto;
    width: 90%;
  }
  .contact-info,
  .contact-form {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .contact-modal {
    width: 92%;
  }
}

/* =========================================================
   FİYATLANDIRMA
   ========================================================= */
.fiyat-contents,
.Fiyat-body {
  max-height: 63vh;
  overflow-y: auto;
}

.Fiyat-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin: 0 20px;
  padding: 20px 0;
}

/* Kartlar */
.pricing-item {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: none;
  text-align: center;
  padding: 24px 18px;
  color: #f5f5f5;
  background: rgba(30, 30, 30, 0.35);
  backdrop-filter: blur(14px);
  height: auto;
  max-height: none;
  transform: translateY(50px);
  animation: slideIn 0.6s ease forwards;
  overflow: hidden;
}

@media (min-width: 1050px) {
  .pricing-item {
    max-width: none;
    max-height: none;
    overflow: visible;
  }
}

.pricing-item h2 {
  color: #e0e0e0;
  font-size: clamp(18px, 2.2vw, 28px);
  margin: 0 0 12px;
}
.pricing-item .price {
  padding: 12px 0 10px;
  line-height: 1.2;
}
.pricing-item .price span {
  display: block;
}
.pricing-item .price span:first-child {
  font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing: 0.5px;
  color: #fff;
}
.pricing-item .price span:last-child {
  font-size: clamp(12px, 1.6vw, 16px);
  color: #dcdcdc;
  font-weight: 600;
}

.pricing-item ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-item ul li {
  padding: 8px 0;
  opacity: 0.9;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-item,
.pricing-item * {
  overflow-wrap: anywhere;
}

.pricing-item:hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.22);
}

@media (max-width: 800px) {
  .Fiyat-body {
    margin: 0;
  }
  .pricing-item {
    padding: 16px;
  }
}

/* =========================================================
   HAKKIMIZDA (Accordion)
   ========================================================= */
.about-us {
  padding: 10px 0;
  color: #f5f5f5;
  max-height: 75vh;
  overflow: auto;
}
.about-us h1 {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #f5f5f5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 10px 20px 20px;
}
.about-us p {
  font-size: clamp(14px, 1.5vw, 19px);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.accordion {
  max-width: 1000px;
  margin: 0 auto 0 20px;
  animation: slideIn 0.6s ease forwards;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.accordion-header {
  background: rgba(70, 70, 70, 0.32);
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.25s ease;
  user-select: none;
}
.accordion-header:hover {
  background: rgba(100, 100, 100, 0.8);
}
.accordion-header h3 {
  font-size: clamp(14px, 1.6vw, 18px);
  margin: 0;
}
.accordion-header .icon {
  transition: transform 0.45s ease;
  font-size: 1.2rem;
  margin-right: 10px;
}
.accordion-content {
  padding: 10px 0 12px;
  background: rgba(50, 50, 50, 0.7);
  display: none;
}
.accordion-content p {
  font-size: clamp(13px, 1.4vw, 16px);
  margin: 0;
  text-align: left;
  padding-left: 20px;
}

.product-page {
  border-radius: 10px;
  padding: 20px;
  color: #f5f5f5;
  display: flex;
  gap: 24px;
  overflow-y: auto;
  max-height: 63vh;
  background: rgba(30, 30, 30, 0.3);
  backdrop-filter: blur(12px);
}
.product-title {
  text-align: left;
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 0 0 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.product-image img {
  max-width: 90%;
  border-radius: 10px;
  animation: slideIn 0.6s ease forwards;
}
.product-details {
  margin-top: 8px;
}
.product-description {
  font-size: clamp(13px, 1.5vw, 16px);
  margin-bottom: 10px;
}
.product-features {
  margin: 10px 0;
}
.product-features .ul .li {
  padding-left: 40px;
}

@media (max-width: 1000px) {
  .product-page {
    display: block;
    max-height: 63vh;
    overflow: auto;
  }
  .product-image img {
    max-height: 50%;
  }
}

.container-contents {
  max-height: 63vh;
  overflow-y: auto;
}
.fiyat-contents {
  max-height: 63vh;
  overflow-y: auto;
}
