:root {
  --primary-color: #0066a1;
  --secondary-color: #00a6e6;
  --accent-color: #00c3ff;
  --text-color: #2c3e50;
  --background-color: #f5f9ff;
  --card-bg: #ffffff;
  --hover-color: #e3f2fd;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  padding: 2rem 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--card-bg);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 102, 161, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header {
  margin-bottom: 2rem;
}

.company-name {
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 102, 161, 0.1);
}

.tagline {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-out;
}

.construction-title {
  color: var(--accent-color);
  font-size: 2.2rem;
  margin: 2rem 0;
  font-weight: 600;
  animation: fadeInUp 1s ease-out;
}

.animation-container {
  margin: 2rem auto;
  animation: fadeIn 1.5s ease-out;
  filter: drop-shadow(0 10px 20px rgba(0, 102, 161, 0.1));
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 0 1rem;
  animation: fadeInUp 1.2s ease-out;
}

.service-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 102, 161, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  background: var(--hover-color);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-item h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.info-section {
  background: linear-gradient(135deg, rgba(0, 102, 161, 0.05) 0%, rgba(0, 195, 255, 0.05) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.features-list li {
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 102, 161, 0.05);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateY(-5px);
}

.coming-soon-container {
  margin: 4rem 0;
}

.coming-soon {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
  animation: pulse 2s infinite;
  text-shadow: 2px 2px 4px rgba(0, 102, 161, 0.1);
}

.contact-info {
  margin: 2rem 0;
}

.contact-info .highlight {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1rem;
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  animation: waveAnimation 10s linear infinite;
}

.wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes waveAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .construction-title {
    font-size: 1.8rem;
  }

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

  .features-list {
    grid-template-columns: 1fr;
  }

  .animation-container lottie-player {
    width: 300px;
    height: 300px;
  }

  .coming-soon {
    font-size: 2rem;
  }
}

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