@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f4f7fa;
  color: #174467;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #174467;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #f7f8f0;
  cursor: pointer;
  letter-spacing: 1px;
}

.nav_links {
  display: flex;
  gap: 30px;
}

.nav_links li a {
  font-weight: 500;
  color: #f7f8f0;
  font-size: 16px;
}

.nav_links li a:hover {
  color: #0088a9;
}

.cta button {
  padding: 10px 28px;
  background-color: #0088a9;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: #f7f8f0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.cta button:hover {
  background-color: #00a8c9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 136, 169, 0.4);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  background: linear-gradient(135deg, #174467 0%, #355872 50%, #5f8aa6 100%);
  color: #f7f8f0;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-btn {
  padding: 14px 36px;
  background-color: #0088a9;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: #f7f8f0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #00a8c9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 136, 169, 0.5);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.pricing {
  padding: 100px 10%;
  background-color: #f4f7fa;
  text-align: center;
}

.pricing-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #174467;
}

.pricing-subtitle {
  font-size: 18px;
  color: #5f8aa6;
  margin-bottom: 60px;
  font-weight: 400;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  width: 340px;
  box-shadow: 0 10px 30px rgba(23, 68, 103, 0.12);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(23, 68, 103, 0.2);
}

.card.popular {
  border-color: #0088a9;
  transform: scale(1.05);
}

.card.popular:hover {
  transform: scale(1.05) translateY(-12px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0088a9, #00a8c9);
  color: #f7f8f0;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #174467;
}

.price {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #355872;
}

.card ul {
  margin-bottom: 30px;
  text-align: left;
}

.card ul li {
  font-size: 16px;
  margin: 12px 0;
  color: #5f8aa6;
  padding-left: 25px;
  position: relative;
}

.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0088a9;
  font-weight: 700;
}

.card-btn {
  width: 100%;
  padding: 14px 28px;
  background-color: #355872;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: #f7f8f0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background-color: #174467;
}

.card-btn.primary {
  background-color: #0088a9;
}

.card-btn.primary:hover {
  background-color: #00a8c9;
}

footer {
  padding: 30px 10%;
  background-color: #174467;
  text-align: center;
  color: #f7f8f0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 10%;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .card.popular {
    transform: none;
  }

  .card.popular:hover {
    transform: translateY(-12px);
  }

  .about {
    flex-direction: column;
    text-align: center;
    padding: 60px 10%;
    gap: 40px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav_links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    padding: 40px 5%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .pricing {
    padding: 60px 5%;
  }

  .pricing-title {
    font-size: 36px;
  }

  .card {
    width: 100%;
    max-width: 340px;
  }

  .about {
    padding: 40px 5%;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
  }
}

.about {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  background: linear-gradient(135deg, #f0f7f4 0%, #d6ede5 50%, #b2d8cc 100%);
  color: #174467;
  gap: 50px;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #174467;
}

.about p {
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 400;
  color: #355872;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  filter: drop-shadow(0 10px 30px rgba(23, 68, 103, 0.2));
}

.about-btn {
  padding: 14px 36px;
  background-color: #0088a9;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: #f7f8f0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #00a8c9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 136, 169, 0.4);
}

#heroLaptop {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
}

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

/* Contact Section */
.contact {
  min-height: 99vh;
  padding: 100px 10%;
  background: linear-gradient(135deg, #174467 0%, #355872 60%, #5f8aa6 100%);
  text-align: center;
  color: #f7f8f0;
}

.contact-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f7f8f0;
}

.contact-subtitle {
  font-size: 18px;
  color: rgba(247, 248, 240, 0.75);
  margin-bottom: 60px;
  font-weight: 400;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(247, 248, 240, 0.1);
  border: 1.5px solid rgba(247, 248, 240, 0.2);
  border-radius: 12px;
  color: #f7f8f0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 248, 240, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0088a9;
  background: rgba(247, 248, 240, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-btn {
  width: 100%;
  padding: 14px 28px;
  background-color: #0088a9;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: #f7f8f0;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.contact-form-btn:hover {
  background-color: #00a8c9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 169, 0.5);
}

.contact-info {
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  text-align: left;
}

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

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 136, 169, 0.2);
  border: 1.5px solid rgba(0, 136, 169, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #f7f8f0;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 14px;
  color: rgba(247, 248, 240, 0.65);
}

.contact-divider {
  width: 1.5px;
  background: rgba(247, 248, 240, 0.15);
  align-self: stretch;
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 5%;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-divider {
    display: none;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info-item {
    justify-content: center;
  }
}
