/* İçerik Pazarlama Sayfası Özel Stilleri */

/* Base Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - İçerik Pazarlama Temalı */
.content-hero {
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #48cae4 75%,
    #667eea 100%
  );
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.content-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.floating-content-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-content-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-content 15s infinite ease-in-out;
}

.floating-content-circle.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 80%;
  animation-delay: 0s;
}

.floating-content-circle.circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 5%;
  animation-delay: 5s;
}

.floating-content-circle.circle-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes float-content {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

.content-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-text {
  max-width: 600px;
}

.content-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.content-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-title-gradient {
  background: linear-gradient(135deg, #f093fb 0%, #48cae4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.content-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-content-primary {
  background: linear-gradient(135deg, #f093fb 0%, #48cae4 100%);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.btn-content-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
  color: white;
  text-decoration: none;
}

.btn-content-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-content-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.content-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.content-dashboard {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  width: 400px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-content-screen {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.metric-content-card {
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  color: white;
  font-weight: 600;
}

.floating-content-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-content-icons i {
  position: absolute;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  animation: content-icon-float 8s infinite ease-in-out;
}

.floating-content-icons i:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.floating-content-icons i:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.floating-content-icons i:nth-child(3) {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

.floating-content-icons i:nth-child(4) {
  bottom: 15%;
  right: 25%;
  animation-delay: 3s;
}

.floating-content-icons i:nth-child(5) {
  top: 50%;
  left: 5%;
  animation-delay: 4s;
}

.floating-content-icons i:nth-child(6) {
  top: 80%;
  right: 10%;
  animation-delay: 5s;
}

@keyframes content-icon-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.section-title-accent {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 35px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Content Types Section */
.content-types-section {
  padding: 100px 0;
  background: white;
}

.content-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.content-type-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.content-type-card:nth-child(1) {
  border-top: 4px solid #667eea;
}

.content-type-card:nth-child(2) {
  border-top: 4px solid #764ba2;
}

.content-type-card:nth-child(3) {
  border-top: 4px solid #f093fb;
}

.content-type-card:nth-child(4) {
  border-top: 4px solid #48cae4;
}

.content-type-card:nth-child(5) {
  border-top: 4px solid #667eea;
}

.content-type-card:nth-child(6) {
  border-top: 4px solid #764ba2;
}

.content-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.content-type-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.content-type-card:nth-child(1) .content-type-icon {
  color: #667eea;
}

.content-type-card:nth-child(2) .content-type-icon {
  color: #764ba2;
}

.content-type-card:nth-child(3) .content-type-icon {
  color: #f093fb;
}

.content-type-card:nth-child(4) .content-type-icon {
  color: #48cae4;
}

.content-type-card:nth-child(5) .content-type-icon {
  color: #667eea;
}

.content-type-card:nth-child(6) .content-type-icon {
  color: #764ba2;
}

.content-type-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.content-type-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* Strategy Showcase Section */
.strategy-showcase {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 100px 0;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.strategy-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.strategy-number {
  font-size: 48px;
  font-weight: bold;
  color: #f093fb;
  display: block;
  margin-bottom: 10px;
}

.strategy-card p {
  margin: 0;
  font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: #f8fafc;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.portfolio-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.badge.bg-primary {
  background: #667eea !important;
  color: white;
}

.badge.bg-success {
  background: #10b981 !important;
  color: white;
}

.badge.bg-danger {
  background: #ef4444 !important;
  color: white;
}

.badge.bg-warning {
  background: #f59e0b !important;
  color: white;
}

.badge.bg-info {
  background: #06b6d4 !important;
  color: white;
}

.badge.bg-secondary {
  background: #6b7280 !important;
  color: white;
}

.badge.bg-dark {
  background: #374151 !important;
  color: white;
}

/* Process Timeline Section */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-timeline {
  position: relative;
  padding: 50px 0;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
  text-align: right;
  padding-right: 40px;
  padding-left: 0;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.step-content {
  flex: 1;
  padding-left: 40px;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  background: #f8fafc;
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.price-card.featured {
  border: 3px solid #667eea;
  transform: scale(1.05);
}

.price-card.featured::before {
  content: "En Popüler";
  position: absolute;
  top: 20px;
  right: -30px;
  background: #667eea;
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.price-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.price-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: #667eea;
  margin: 20px 0;
}

.price small {
  font-size: 16px;
  color: #64748b;
  font-weight: normal;
}

.price-card .text-muted {
  color: #64748b;
  margin-bottom: 30px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.price-card ul li {
  padding: 8px 0;
  color: #1e293b;
  display: flex;
  align-items: center;
}

.price-card ul li i {
  margin-right: 10px;
  color: #10b981;
}

.btn-pricing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  color: white;
  text-decoration: none;
}

.btn-pricing-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-pricing-outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Success Stats Section */
.success-stats {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #f093fb;
  display: block;
  margin-bottom: 10px;
}

.stat-item p {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-title-accent {
  color: #f093fb;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-button {
  background: white;
  color: #667eea;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #764ba2;
  text-decoration: none;
}

.cta-features {
  margin-top: 40px;
}

.cta-features p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-features i {
  color: #f093fb;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .content-title {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .content-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .content-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .content-title {
    font-size: 2.5rem;
  }

  .content-description {
    font-size: 1.1rem;
  }

  .content-buttons {
    flex-direction: column;
    align-items: center;
  }

  .content-dashboard {
    width: 300px;
    height: 250px;
    padding: 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid,
  .content-types-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column !important;
    text-align: center;
  }

  .process-step:nth-child(even) .step-content {
    text-align: center;
    padding: 20px 0 0 0;
  }

  .step-content {
    padding: 20px 0 0 0;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .content-title {
    font-size: 2rem;
  }

  .content-description {
    font-size: 1rem;
  }

  .content-dashboard {
    width: 250px;
    height: 200px;
    padding: 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-content-primary,
  .btn-content-secondary {
    padding: 15px 25px;
    font-size: 0.9rem;
  }
}
