  .contact-form {
  max-width: 600px;
  margin: 0 auto;
}


.form-group-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-group {
  flex: 1 1 100%;
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.country-code {
  flex: 0 0 25%;
  max-width: 25%;
}

.phone-number {
  flex: 0 0 70%;
  max-width: 70%;
}

textarea.form-control {
  min-height: 100px;
}



.form-message {
  color: #27ae60; /* Unique green */
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: #f9f9f9; /* Light gray background */
  margin: 50px auto;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Unique shadow */
}


.navbar-close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
}

.navbar-close-btn:hover {
  color: #2980b9; /* Lighter blue on hover */
}

.form-title {
  font-size: 26px;
  font-weight: 600;
  color: #2c3e50; /* Matches button */
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #ecf0f1; /* Unique divider */
  padding-bottom: 10px;
}

.form-section {
  font-size: 18px;
  font-weight: 500;
  color: #34495e; /* Darker shade */
  margin-top: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #3498db; /* Unique left border */
  padding-left: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #7f8c8d; /* Unique gray */
}


.popup-trigger {
  display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #F27935;
    font-family: "SFProDisplay-Semibold", sans-serif;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    padding: 15px;
    max-width: 233px;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease-out;
    border: 1px solid #F27935;
    cursor: pointer;
}

.popup-trigger:hover {
   background: transparent;
    color: #F27935;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%233498db' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  cursor: pointer;
}

/* Phone Layout Optimizations */
@media (max-width: 768px) {
  .modal-content {
    margin: 20px auto;
    width: 95%;
    max-height: 85vh;
  }

  .phone-input {
    flex-direction: column;
    gap: 5px;
  }

  .country-code, .phone-number {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .btn.contact-form__btn {
    width: auto;
  }

  .form-title {
    font-size: 22px;
  }

  .form-section {
    font-size: 16px;
  }

  .form-navbar {
    padding: 8px 15px;
  }

  .navbar-close-btn {
    font-size: 24px;
  }
}
  /* WhatsApp button CSS */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Changed from left to right */
  width: 60px;
  height: 60px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none; /* Remove underline */
  color: white; /* Icon color */
}
.whatsapp-button:hover {
  transform: scale(1.1);
}
.whatsapp-button i {
  font-size: 32px; /* Adjust icon size */
}
@media (max-width: 600px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px; /* Changed from left to right */
  }
  .whatsapp-button i {
    font-size: 26px;
  }
}