* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  color: #059669;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #059669;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/3997983/pexels-photo-3997983.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, white, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-icon-bg {
  background: #d1fae5;
  padding: 1rem;
  border-radius: 50%;
}

.hero-icon {
  width: 4rem;
  height: 4rem;
  color: #059669;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  display: block;
  color: #059669;
  font-weight: 400;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #059669;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #047857;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.btn-secondary {
  background: white;
  color: #059669;
  border: 2px solid #059669;
}

.btn-secondary:hover {
  background: #d1fae5;
}

.btn-block {
  width: 100%;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

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

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper {
  background: white;
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover .service-icon-wrapper {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 2rem;
  height: 2rem;
  color: #059669;
}

.service-price {
  text-align: right;
}

.service-duration {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.service-cost {
  font-size: 1.5rem;
  font-weight: 600;
  color: #059669;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.service-benefits {
  list-style: none;
}

.service-benefits li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
  display: inline-block;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #d1fae5 0%, #ffffff 50%, #ccfbf1 100%);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-title {
  font-size: 2.25rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-text {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight {
  display: flex;
  align-items: flex-start;
}

.highlight-icon {
  background: #059669;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.icon-white {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.highlight-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.highlight-description {
  color: #4b5563;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(135deg, #a7f3d0, #99f6e4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.badge-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #059669;
}

.badge-text {
  color: #4b5563;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stars {
  display: flex;
  margin-bottom: 1rem;
}

.star-filled {
  width: 1.25rem;
  height: 1.25rem;
  color: #eab308;
  fill: #eab308;
}

.testimonial-content {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(5, 150, 105, 0.2);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: #1f2937;
}

.author-role {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #d1fae5 0%, #ffffff 50%, #ccfbf1 100%);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  background: #d1fae5;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  background: #059669;
}

.contact-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #059669;
  transition: all 0.3s;
}

.contact-card:hover .contact-icon-svg {
  color: white;
}

.contact-label {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
}

.contact-form-wrapper {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #059669;
}

textarea.form-input {
  resize: vertical;
  font-family: inherit;
}

/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  color: #10b981;
  margin-right: 0.5rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: #1f2937;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: inline-flex;
}

.social-link:hover {
  background: #059669;
}

.social-link i {
  width: 1.25rem;
  height: 1.25rem;
  color: #d1d5db;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.links-list {
  list-style: none;
}

.links-list li {
  margin-bottom: 0.5rem;
}

.links-list a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.links-list a:hover {
  color: #10b981;
}

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