/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-section a{
    text-decoration: none;
    display: block;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #cffafe 50%, #ccfbf1 100%);
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

.bg-circle-1 {
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  background: #93c5fd;
}

.bg-circle-2 {
  top: 160px;
  right: 80px;
  width: 128px;
  height: 128px;
  background: #5eead4;
  animation-delay: 1s;
}

.bg-circle-3 {
  bottom: 160px;
  left: 25%;
  width: 96px;
  height: 96px;
  background: #67e8f9;
  animation-delay: 0.5s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 0;
}

.hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: white;
  animation: bounce-in 0.6s ease-out;
}

.icon-box-1 {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  transform: rotate(6deg);
}

.icon-box-2 {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
  transform: rotate(-6deg);
  animation-delay: 0.1s;
}

.icon-box-3 {
  background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
  transform: rotate(3deg);
  animation-delay: 0.2s;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(0deg);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 50%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.hero-image-wrapper {
  padding: 48px 0;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Section Styles */
section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-white {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.section-image {
  max-width: 400px;
  margin: 32px auto 0;
  border-radius: 16px;
}

/* Advantages Section */
.advantages {
  background: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.advantage-card {
  padding: 32px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.advantage-card-blue {
  background: #dbeafe;
}
.advantage-card-teal {
  background: #ccfbf1;
}
.advantage-card-pink {
  background: #fce7f3;
}
.advantage-card-amber {
  background: #fef3c7;
}
.advantage-card-green {
  background: #d1fae5;
}
.advantage-card-purple {
  background: #e9d5ff;
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: white;
}

.advantage-icon-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}
.advantage-icon-teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}
.advantage-icon-pink {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
}
.advantage-icon-amber {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}
.advantage-icon-green {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}
.advantage-icon-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 12px;
}

.advantage-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #ccfbf1 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 32px;
  border-radius: 24px;
  border: none;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.service-card-blue {
  background: #dbeafe;
}
.service-card-pink {
  background: #fce7f3;
}
.service-card-purple {
  background: #e9d5ff;
}
.service-card-teal {
  background: #ccfbf1;
}
.service-card-cyan {
  background: #cffafe;
}
.service-card-amber {
  background: #fef3c7;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: white;
}

.service-icon-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}
.service-icon-pink {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
}
.service-icon-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}
.service-icon-teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}
.service-icon-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
}
.service-icon-amber {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-description {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-price {
  font-size: 1.875rem;
  font-weight: 300;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

.btn-service {
  width: 100%;
  color: white;
}

.btn-service-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}
.btn-service-pink {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
}
.btn-service-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}
.btn-service-teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}
.btn-service-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
}
.btn-service-amber {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.btn-service:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Statistics Section */
.statistics {
  position: relative;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 50%, #0891b2 100%);
  color: white;
  overflow: hidden;
}

.statistics-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.stats-circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  filter: blur(80px);
}

.stats-circle-1 {
  top: 40px;
  left: 40px;
  width: 160px;
  height: 160px;
}

.stats-circle-2 {
  bottom: 40px;
  right: 40px;
  width: 240px;
  height: 240px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 10;
}

.stat-card {
  text-align: center;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: white;
}

.stat-icon-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}
.stat-icon-teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}
.stat-icon-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
}
.stat-icon-green {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.stat-number {
  font-size: 3.75rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.author-name {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.875rem;
  color: #6b7280;
}

/* SEO Text Section */
.seo-text {
  background: white;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 32px;
  color: #1f2937;
}

.seo-paragraph {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* FAQ Section */
.faq {
  background: #f9fafb;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 300;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  font-size: 1.5rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}

.contact-label {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.125rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: #2563eb;
}

.contact-note {
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.contact-note p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-textarea {
  resize: none;
  min-height: 128px;
}

.form-privacy {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-text {
  color: #9ca3af;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .advantages-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 962px){
  .section-image{
    max-width: 100%;
  }
}