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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222222;
}

/* =========================
   NAVIGATION
========================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8%;
  min-height: 100px;
  background-color: #171329;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #f7941d;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 60px 8%;
  background-color: #fffaf4;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #222222;
}

.orange-text {
  color: #f7941d;
}

.blue-text {
  color: #2bb6d8;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #f7941d;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background-color: #2bb6d8;
  transform: translateY(-2px);
}

/* =========================
   SERVICES
========================= */

.services {
  padding: 80px 8%;
  background-color: #ffffff;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 42px;
  color: #171329;
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
}

.service-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.service-card {
  flex: 1;
  max-width: 350px;
  padding: 35px;
  background-color: #fffaf4;
  border-radius: 12px;
  border-top: 5px solid #f7941d;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 24px;
  color: #171329;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* =========================
   ABOUT
========================= */

.about {
  padding: 80px 8%;
  background-color: #fffaf4;
}

.about-content {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-content h2 {
  font-size: 42px;
  color: #171329;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 15px;
}

.about-highlights {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.highlight {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 25px;
}

.highlight h3 {
  color: #f7941d;
  font-size: 22px;
  margin-bottom: 10px;
}

.highlight p {
  color: #555555;
  line-height: 1.6;
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 90px 8%;
  background-color: #171329;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.contact p {
  color: #dddddd;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #f7941d;
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #2bb6d8;
  transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 25px 8%;
  background-color: #0f0c1c;
  text-align: center;
}

footer p {
  color: #aaaaaa;
  font-size: 14px;
}

/* =========================
   CONTACT MODAL
========================= */

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
}

.contact-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 450px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.modal-content h2 {
  color: #171329;
  font-size: 30px;
  margin-bottom: 10px;
}

.modal-content p {
  color: #555555;
  margin-bottom: 25px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: none;
  background: none;
  font-size: 30px;
  cursor: pointer;
  color: #171329;
}

.modal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-links a {
  display: block;
  padding: 14px;
  background-color: #f7941d;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
}

.modal-links a:hover {
  background-color: #2bb6d8;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 16px 5%;
  }

  .logo img {
    height: 72px;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 70px 6%;
    text-align: center;
  }

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

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

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

  .services,
  .about,
  .contact {
    padding-left: 6%;
    padding-right: 6%;
  }

  .section-heading h2,
  .about-content h2,
  .contact h2 {
    font-size: 34px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

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

  .about-highlights {
    flex-direction: column;
    align-items: center;
  }

  .highlight {
    width: 100%;
    max-width: 500px;
  }

  .modal-content {
    padding: 35px 25px;
  }
}
