/* Teklif Section */
.teklif-section {
  position: relative;
  background: url('images/mermer-masalar/mermermasabackground.webp') center center/cover no-repeat;
  padding: 80px 20px;
  z-index: 1;
}

/* Overlay (mermerin üzerine hafif beyaz layer) */
.teklif-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* Transparan beyaz */
  z-index: 2;
}

/* İçerik üstte kalması için */
.teklif-section .container {
  position: relative;
  z-index: 3;
}

/* Neden Biz Başlık */
.teklif-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.teklif-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  margin-top: 10px;
  border-radius: 2px;
}

/* Neden Biz List */
.teklif-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.teklif-section ul li i {
  font-size: 1.8rem;
  color: #2E7D32; /* Koyu yeşil ikon */
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  padding: 14px;
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.teklif-section ul li i:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
}

/* Form Card Saydamlık */
.form-card {
  background: rgba(255, 255, 255, 0.8); /* Daha şeffaf */
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 30px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Form Inputs */
.form-card input,
.form-card textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 1rem;
}

/* Premium CTA Buton */
.btn-primary {
  background: linear-gradient(135deg, #91f799, #81f584);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(255,87,34,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c7f7cb, #81f584);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,87,34,0.5);
}


/* Animasyon */
.teklif-section .col-lg-6 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.teklif-section .col-lg-6:nth-child(1) {
  animation-delay: 0.2s;
}

.teklif-section .col-lg-6:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .teklif-section {
    padding: 60px 20px;
  }
  .form-card {
    margin-top: 30px;
  }
}
