/* PDF Showcase Section Styles */
.tj-pdf-showcase-section {
  position: relative;
  overflow: hidden;
}

.pdf-content-area {
  padding: 20px 0;
}

.pdf-content-area .sec-heading {
  margin-bottom: 30px;
}

.pdf-content-area .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  /* Sitenin kendi rengini kullan */
}

.pdf-content-area .sec-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--tj-heading-color, #1a1a1a);
}

.pdf-content-area .sec-title span {
  /* Sitenin kendi rengini kullan */
}

.pdf-desc {
  margin: 25px 0 35px;
}

.pdf-desc p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tj-body-color, #666);
  margin: 0;
}

/* PDF Placeholder Box */
.pdf-placeholder-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pdf-placeholder-box {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.pdf-placeholder-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-placeholder-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.25);
}

.pdf-placeholder-box:hover::before {
  opacity: 1;
}

.pdf-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #666;
  transition: all 0.3s ease;
}

.pdf-placeholder-box:hover .pdf-icon {
  background: rgba(0, 0, 0, 0.12);
  transform: scale(1.1);
}

.pdf-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--tj-heading-color, #1a1a1a);
  text-align: center;
}

.pdf-note {
  font-size: 14px;
  color: var(--tj-body-color, #666);
  text-align: center;
  margin: 0;
  opacity: 0.7;
}

/* Background Shapes */
.tj-pdf-showcase-section .bg-shape-1,
.tj-pdf-showcase-section .bg-shape-2 {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}

.tj-pdf-showcase-section .bg-shape-1 {
  top: 10%;
  right: 5%;
}

.tj-pdf-showcase-section .bg-shape-2 {
  bottom: 10%;
  left: 5%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .pdf-content-area .sec-title {
    font-size: 32px;
  }
  
  .pdf-placeholder-box {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .pdf-content-area {
    padding: 10px 0 30px;
  }
  
  .pdf-content-area .sec-title {
    font-size: 28px;
  }
  
  .pdf-desc {
    margin: 20px 0 25px;
  }
  
  .pdf-placeholder-box {
    max-width: 100%;
    aspect-ratio: 1/1.2;
    padding: 30px 20px;
  }
  
  .pdf-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .pdf-text {
    font-size: 18px;
  }
  
  .pdf-note {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .pdf-content-area .sec-title {
    font-size: 24px;
  }
  
  .pdf-placeholder-box {
    padding: 25px 15px;
  }
}
