/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d1d5db;
  z-index: 50;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #164e63;
}

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

.nav-link {
  color: #6b7280;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #164e63;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.nav-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #164e63;
  transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
  width: 100%;
}

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

.tech-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(90deg, #000 1px, transparent 1px),
    linear-gradient(180deg, #000 1px, transparent 1px);
  background-size: 50px 50px;
}

.floating-element {
  position: absolute;
  opacity: 0.2;
  color: #164e63;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  top: 5rem;
  left: 2.5rem;
}

.floating-2 {
  top: 10rem;
  right: 5rem;
  animation-delay: 2s;
}

.floating-3 {
  bottom: 10rem;
  left: 5rem;
  animation-delay: 4s;
}

.floating-4 {
  bottom: 5rem;
  right: 2.5rem;
  animation-delay: 1s;
}

.icon-large {
  width: 4rem;
  height: 4rem;
}

.icon-medium {
  width: 3rem;
  height: 3rem;
}

.icon-small {
  width: 2.5rem;
  height: 2.5rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

.hero-text {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background-color: #164e63;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #374151;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-wrap: pretty;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: rgba(22, 78, 99, 0.9);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #164e63;
  text-wrap: balance;
}

.section-description {
  font-size: 1.25rem;
  color: #475569;
  text-wrap: pretty;
  max-width: 32rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background-color: #f0fdf4;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
}

.service-card-popular {
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10b981;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-header {
  text-align: center;
  padding-bottom: 0.5rem;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #10b981;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #164e63;
  margin-bottom: 0.5rem;
}

.service-subtitle {
  color: #6b7280;
}

.service-content {
  text-align: center;
}

.service-price {
  margin-bottom: 1.5rem;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #164e63;
}

.price-range {
  color: #6b7280;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.feature-included {
  color: #164e63;
}

.feature-excluded {
  color: #6b7280;
}

.dot-icon {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #6b7280;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-left: 0.375rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #f0fdf4;
}

.contact-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.contact-card {
  text-align: center;
  background-color: #f0fdf4;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

.contact-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #10b981;
}

.contact-icon svg {
  width: 2rem;
  height: 2rem;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #164e63;
}

.contact-info {
  color: #6b7280;
}

.response-time {
  margin-top: 3rem;
}

.response-card {
  background-color: #f0fdf4;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.response-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #164e63;
}

.response-info {
  color: #6b7280;
}

/* Footer */
.footer {
  background-color: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid #d1d5db;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #164e63;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #475569;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: #6b7280;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #164e63;
  transform: scale(1.05);
}

.footer-copyright {
  padding-top: 2rem;
  border-top: 1px solid #d1d5db;
  font-size: 0.875rem;
  color: #6b7280;
}

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

  .nav-links {
    display: flex;
  }
}

@media (max-width: 639px) {
  .nav-links {
    display: none;
  }

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

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

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

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

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

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