body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
}

.highlight {
  color: #FFC200;
}

.contact-section {
  padding: 80px 20px;
  background: #000;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(255, 194, 0, 0.1);
}

.contact-info {
  flex: 1;
  padding-right: 30px;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #ccc;
}

.info-box i {
  font-size: 18px;
   color: #FFC200;
}

/* Custom icon colors */
.info-box i.fa-envelope {
  color: #FFC200;
}

.info-box i.fa-whatsapp {
  color: #FFC200;
}

.info-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.info-link:hover,
.info-link:focus {
  color: #FFC200;
  transform: translateX(3px);
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #FFC200;
  transform: scale(1.2);
}

.contact-form {
  flex: 1;
  background: #111;
  border-radius: 15px;
  padding: 30px;
  box-shadow: inset 0 0 20px rgba(255, 194, 0, 0.05);
}

.contact-form h3 {
  margin-bottom: 25px;
  color: #FFC200;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1f1f1f;
  color: #fff;
  padding: 12px 15px;
  border: 1px solid #333;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 15px;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFC200;
  outline: none;
}

.contact-form button {
  background: #FFC200;
  color: #000;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e0b100;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
  }

  .contact-info, .contact-form {
    padding: 0;
  }
}

/* nav bar */
.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #FFC200; /* navy blue */
      padding: 10px 20px;
      color: black;
    }

    .logo {
      font-size: 1.5em;
      font-weight: bold;
    }

    /* Navigation links */
    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: black;
      text-decoration: none;
      font-size: 1em;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: white; /* yellow */
    }

    /* Hamburger icon */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 4px 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background-color: #FFC200;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 150px;
        border-radius: 5px;
        padding: 10px;
      }

      .nav-links.show {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }
/* nav bar */
