/* Start Project Section */
.start-project-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e6f7f5 100%);
  position: relative;
  overflow: hidden;
}

.start-project-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Project Content */
.project-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Title */
.project-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, #10b981, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleReveal 1s ease-out;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtitle */
.project-subtitle {
  font-size: 1.3rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: subtitleReveal 1s ease-out 0.3s both;
}

@keyframes subtitleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  animation: buttonsReveal 1s ease-out 0.6s both;
}

@keyframes buttonsReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 220px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  color: white;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: white;
  color: #10b981;
  border: 2px solid #10b981;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #f0f9ff, #e6f7f5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #0ea5e9;
  color: #0ea5e9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  animation: gridReveal 1s ease-out 0.9s both;
}

@keyframes gridReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #0ea5e9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d1fae5, #e0f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: #10b981;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #1a202c;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #718096;
  line-height: 1.5;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: indicatorsReveal 1s ease-out 1.2s both;
}

@keyframes indicatorsReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.indicator-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #10b981, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.indicator-text {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #cbd5e0, transparent);
}

/* Responsive Design */
@media (max-width: 992px) {
  .project-title {
    font-size: 2.8rem;
  }

  .project-subtitle {
    font-size: 1.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .trust-indicators {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .start-project-section {
    padding: 80px 0;
  }

  .project-title {
    font-size: 2.2rem;
  }

  .project-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }

  .trust-indicators {
    gap: 20px;
  }

  .indicator-number {
    font-size: 2rem;
  }

  .divider {
    display: none;
  }

  .indicator {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 1.8rem;
  }

  .project-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 25px;
  }
}

/* Hover Effects Enhancement */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn:hover::after {
  left: 100%;
}

/* Section Background Pattern */
.start-project-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(14, 165, 233, 0.05)
  );
  border-radius: 50%;
  transform: translate(30%, 30%);
  z-index: 0;
}

/* Floating Animation for Feature Cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-card {
  animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.6s;
}

/* Pulse Animation for Primary Button */
@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  }
  100% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  }
}

.btn-primary {
  animation: pulse 2s ease-in-out infinite;
}
