/* Dijital Dönüşüm Danışmanlığı - Modern CSS */

/* Container Fix */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.digital-hero {
  background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 50%, #a29bfe 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.digital-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="digital-pattern" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><path d="M10 10L30 30 M30 10L10 30" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="5" y="5" width="30" height="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23digital-pattern)"/></svg>');
  opacity: 0.3;
  animation: pattern-drift 25s linear infinite;
}

@keyframes pattern-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-40px, -40px);
  }
}

.digital-hero .container {
  position: relative;
  z-index: 2;
}

.digital-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.digital-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.digital-text .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Digital Transformation Animation */
.transformation-animation {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-core {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: core-pulse 4s ease-in-out infinite;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes core-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 20px 60px rgba(9, 132, 227, 0.4);
  }
}

.digital-layers {
  position: absolute;
  animation: layers-rotate 20s linear infinite;
}

.layer {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(116, 185, 255, 0.6);
  animation: layer-spin 3s linear infinite;
}

.layer:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -30px;
  left: -30px;
  animation-delay: 0s;
}

.layer:nth-child(2) {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -60px;
  animation-delay: 1s;
  animation-direction: reverse;
}

.layer:nth-child(3) {
  width: 340px;
  height: 340px;
  top: -90px;
  left: -90px;
  animation-delay: 2s;
}

@keyframes layers-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes layer-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.tech-icons {
  position: absolute;
  animation: icons-orbit 15s linear infinite;
}

.tech-icon {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: icon-float 3s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.tech-icon:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.3);
}

.tech-icon:nth-child(1) {
  top: -160px;
  left: 0;
  animation-delay: 0s;
}
.tech-icon:nth-child(2) {
  top: -113px;
  right: -113px;
  animation-delay: 0.5s;
}
.tech-icon:nth-child(3) {
  top: 0;
  right: -160px;
  animation-delay: 1s;
}
.tech-icon:nth-child(4) {
  bottom: -113px;
  right: -113px;
  animation-delay: 1.5s;
}
.tech-icon:nth-child(5) {
  bottom: -160px;
  left: 0;
  animation-delay: 2s;
}
.tech-icon:nth-child(6) {
  bottom: -113px;
  left: -113px;
  animation-delay: 2.5s;
}
.tech-icon:nth-child(7) {
  top: 0;
  left: -160px;
  animation-delay: 3s;
}
.tech-icon:nth-child(8) {
  top: -113px;
  left: -113px;
  animation-delay: 3.5s;
}

@keyframes icons-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Button Styles */
.digital-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.digital-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.digital-btn i {
  font-size: 1.1em;
}

.digital-btn-primary {
  background: white;
  color: #0984e3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.digital-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(9, 132, 227, 0.3);
  color: #6c5ce7;
  text-decoration: none;
}

.digital-btn-outline {
  border: 2px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.digital-btn-outline:hover {
  background: white;
  color: #0984e3;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service Cards */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(9, 132, 227, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0984e3, #6c5ce7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(9, 132, 227, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0984e3, #6c5ce7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 10px 30px rgba(9, 132, 227, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(9, 132, 227, 0.4);
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1rem;
}

/* Consulting Areas */
.consulting-areas {
  background: #f8f9fa;
  padding: 100px 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.area-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid #0984e3;
}

.area-card:nth-child(2) {
  border-top-color: #6c5ce7;
}
.area-card:nth-child(3) {
  border-top-color: #a29bfe;
}
.area-card:nth-child(4) {
  border-top-color: #74b9ff;
}
.area-card:nth-child(5) {
  border-top-color: #00b894;
}
.area-card:nth-child(6) {
  border-top-color: #e17055;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(9, 132, 227, 0.12);
}

.area-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.area-card:nth-child(1) .area-icon {
  color: #0984e3;
}
.area-card:nth-child(2) .area-icon {
  color: #6c5ce7;
}
.area-card:nth-child(3) .area-icon {
  color: #a29bfe;
}
.area-card:nth-child(4) .area-icon {
  color: #74b9ff;
}
.area-card:nth-child(5) .area-icon {
  color: #00b894;
}
.area-card:nth-child(6) .area-icon {
  color: #e17055;
}

.area-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.area-card p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Transformation Phases */
.transformation-phases {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  color: white;
  padding: 100px 0;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.phase-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.phase-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.phase-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #74b9ff;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.phase-card h6 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}

.phase-card p {
  opacity: 0.9;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Methodology */
.methodology-showcase {
  padding: 100px 0;
  background: white;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-item {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border-left: 5px solid #0984e3;
}

.methodology-item:nth-child(2) {
  border-left-color: #6c5ce7;
}
.methodology-item:nth-child(3) {
  border-left-color: #a29bfe;
}
.methodology-item:nth-child(4) {
  border-left-color: #74b9ff;
}

.methodology-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(9, 132, 227, 0.12);
}

.methodology-item i {
  margin-bottom: 20px;
}

.methodology-item h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.methodology-item p {
  color: #6c757d;
  line-height: 1.6;
}

/* Process Timeline */
.process-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0984e3, #6c5ce7);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.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, #0984e3, #6c5ce7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(9, 132, 227, 0.3);
}

.step-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 350px;
  margin: 0 30px;
  border: 1px solid rgba(9, 132, 227, 0.1);
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.step-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.price-card.featured {
  border-color: #0984e3;
  transform: scale(1.05);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.price-card.featured::before {
  content: "En Popüler";
  position: absolute;
  top: 20px;
  right: -30px;
  background: #0984e3;
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(9, 132, 227, 0.15);
}

.price-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.price-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: #0984e3;
  margin: 20px 0;
}

.price small {
  font-size: 1rem;
  color: #6c757d;
}

.price-card ul {
  text-align: left;
  margin: 30px 0;
}

.price-card li {
  padding: 8px 0;
  color: #6c757d;
}

.price-card .btn {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
}

/* Success Metrics */
.success-metrics {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
  padding: 100px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.metric-item {
  text-align: center;
  padding: 20px;
}

.metric-number {
  font-size: 3rem;
  font-weight: 900;
  color: #74b9ff;
  display: block;
  margin-bottom: 10px;
}

.metric-item p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #0984e3;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  color: #6c5ce7;
  text-decoration: none;
}

.cta-button i {
  margin-right: 8px;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-features p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin: 0;
}

.cta-features i {
  color: #a8e6cf;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .digital-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .digital-text h1 {
    font-size: 2.5rem;
  }

  .transformation-animation {
    width: 300px;
    height: 300px;
  }

  .digital-core {
    width: 120px;
    height: 120px;
  }

  .tech-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .services-grid,
  .areas-grid,
  .phases-grid,
  .methodology-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .process-step:nth-child(even) {
    flex-direction: row !important;
  }

  .step-number {
    position: absolute;
    left: 0;
  }

  .step-content {
    margin: 0;
    text-align: left !important;
    padding: 20px !important;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
