/* PHONE NUMBER */

/* 📌 COUNTRIES CODE PHONE NUMBER */
/* Dropdown container */
.iti__country-list {
  background: linear-gradient(135deg, #416c92, #066b44);
  color: #f0f0f0 !important; /* Light text for readability */
  max-height: 200px !important; /* Optional: limit height */
  overflow-y: auto !important;
  border-radius: 7px !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.72);
}

/* Each country option */
.iti__country {
  color: #f0f0f0 !important; /* Light text */
  background-color: transparent !important;
}

/* Hover/focus on country options */
.iti__country:hover,
.iti__country.iti__country--highlight {
  background-color: #0bf39a !important; /* Mouse Selection highlight BACKUP: #f7f447*/
  color: #360000 !important;
}

/* Scrollbar styling (optional for modern browsers) */
.iti__country-list::-webkit-scrollbar {
  width: 8px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background-color: #639bcc;
  border-radius: 4px;
}

/* Make sure the dial code is also readable on hover */
.iti__country:hover .iti__dial-code,
.iti__country.iti__country--highlight .iti__dial-code {
  color: #5f5858 !important; /* Match the text color on hover */
  font-weight: bold;
}

/* ------------------RFQ SECTION------------------ */
.rfq-section{ /* For what ? */
  box-shadow: 2 9px 16px rgba(11, 243, 154, 0.75)
}

.rfq-section h2 { /* title */
  font-size: 2rem;
  color: #a8d3f8;
  font-weight: 600;
  text-align: center;
}

.rfq-section info{ /* for what ? */
  font-weight: lighter;
  font-size: small;
  background-color: red;
}

.rfq-section info-icon{ /* for what ? */
  cursor: help;
  font-size: 18px;
  margin-left: 8px;
  border-radius: 7px;
}

.rfq-section .phone-info-popup{ /* Comment info */
  display: none ; /* Hidden by default */
  position: absolute;
  background: linear-gradient(135deg, #93b6f3, #45fadc);
  border: 1px solid #ccc;
  border-radius: 7px;
  box-shadow: 0 5px 8px rgba(140, 243, 5, 0.7);
  padding: 12px 16px;
  min-width: 220px;
  font-size: 1rem;
  color: #222;
  transition: opacity 0.2s;
  z-index: 1000;
}

.rfq-section { /* Entire Form */
  max-width: 600px;
  margin: 60px auto;
  background-color: #001d4f;
  background: linear-gradient(135deg, #0c192e, #4d77c0);
  padding: 30px;
  color: #faebd7;
  border-radius: 7px;
  position: relative;
  z-index: 1;
}

.rfq-section input, /* Customer input */
.rfq-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

.rfq-section label { /* Label title */
  display: block;
  margin-bottom: 5px;
  padding-top: 16px;
  font-weight: bold;;
}

.rfq-section button { /* For what ? */
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.rfq-section .btn-light { /* Submit button  */
  background-color: #67d2db; /* #1aafbe */
  color: #333;
  font-weight: bold;
  font-size: 1.11rem;
  border: 1.2px solid greenyellow;
}

.rfq-section .btn-light:hover{ /* Submit button hover */
  background-color: #0bf39a;
  color: #333;
  font-weight: bold;
  border: 1.2px solid #f7f447; /*0bf39a*/
}

.rfq-section .btn-secondary { /* Reset button */
  background-color: #3a3068;
  color: #fff;
  font-weight: 400;
}

.rfq-section .btn-secondary:hover{ /* Reset button hover */
  background-color: #221e33;
  color: #fff;
  font-weight: 400;
  border: 1px solid #360000;
}

/* add some focus*/
.rfq-section input:focus, /* When input field are focused */
.rfq-section textarea:focus{
  outline: 2.5px solid #5b8feb;
  background-color: #ebeed4;
}
