.breadcrum {
  width: 270px !important;
}

section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.container {
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.heading {
  text-align: center;
}

.heading h2 {
  margin-bottom: 12px;
}

.heading p {
  max-width: 963px;
  color: #00000099;
}

/* ---------- Floating label EXACT look (small label top-left + large typed text) ----------*/

.floating-wrap {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.floating-wrap input::placeholder {
  opacity: 0;
}

.floating-wrap .float-label {
  position: absolute;
  left: 16px;
  top: 15px;
  font-size: 18px;
  color: #00000099;
  pointer-events: none;
  padding: 0 6px;
  transform-origin: left top;
  transition: all .15s ease;
  white-space: nowrap;
}

.floating-wrap input:focus+.float-label {
  color: #00000099;
  font-size: 13px;
  top: 2px;
}

.floating-wrap input:not(:placeholder-shown)+.float-label {
  color: #00000099;
  font-size: 13px;
  top: 4px;
}

/* --- 2. The Main Container --- */
.wrapper {
  position: relative;
  /* Needed for positioning the dropdown */
  height: 52px;
  border: 1px solid #fee823;
  width: 100%;
  /* width: 380px; */
  flex: 1;
}

.wrapper input {
  /* height: 100% !important; */
  border: 0 !important;
  border-left: 1px solid #ccc !important;
  border-radius: 0 !important;
  padding: 0 0 0 10px !important;
  /* width: unset !important; */
}

.input-container {
  background-color: white;
  padding: 10px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  /* Keeps input above the dropdown when closed */
  height: 52px;
}

/* --- 3. Left Side (Selector) --- */
.country-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 6px;
  user-select: none;
  /* Prevents text highlighting on clicks */
}

.flag-icon {
  width: 28px;
  height: 19px;
  border-radius: 2px;
  object-fit: cover;
  margin-right: 8px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.country-code {
  color: #999;
  font-size: 18px;
  margin-right: 8px;
  font-weight: 400;
}

/* --- 4. Custom Arrows --- */
.arrow-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #999;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #999;
}

.phone-input {
  border: none;
  outline: none;
  font-size: 18px;
  color: #333;
  flex-grow: 1;
  height: 100%;
}

/* --- 6. The Dropdown List (New) --- */
.country-list {
  position: absolute;
  top: 110%;
  /* Pushes it just below the input */
  left: 0;
  width: 100%;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  /* Limits height */
  overflow-y: auto;
  /* Adds scrollbar if list is long */
  display: none;
  /* Hidden by default */
  z-index: 10;
  list-style: none;
}

/* Scrollbar styling for a cleaner look */
.country-list::-webkit-scrollbar {
  width: 8px;
}

.country-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.country-list.show {
  display: block;
}

.country-option {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.country-option:last-child {
  border-bottom: none;
}

.country-option:hover {
  background-color: #f9f9f9;
}

.option-flag {
  width: 24px;
  height: 16px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 2px;
}

.option-name {
  flex-grow: 1;
  font-size: 14px;
  color: #333;
}

.option-code {
  font-size: 14px;
  color: #999;
  font-weight: bold;
}

/*--Form--*/
.get-quote-form {
  max-width: 749px;
  min-width: 500px;
  background-color: #fee823;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 24px 40px;
  gap: 27px;
  align-items: center;
}

.get-quote-form p {
  font-size: 18px;
  font-weight: 400;
  color: #00000099;
}

.get-quote-form p strong {
  font-weight: 600;
}

.get-quote-form .form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.get-quote-form .form p {
  color: #000000;
}

.form .row-2 {
  display: flex;
  justify-content: space-between;
  gap: 41px;
}

.form .input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form .input p {
  font-size: 18px;
  font-weight: 500;
}

.form input {
  height: 52px;
  border: 1px solid #fee823;
  background-color: #ffffff;
  outline: none;
  border-radius: 4px;
  padding: 9px 20px;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
}

.get-quote-btn {
  background-color: #000000;
  border: none;
  outline: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  height: 54px;
  width: 100%;
}

.get-quote-btn:hover {
  background-color: #fee823;
  border: 2px solid #000000;
  color: #000000;
}

.phone-field {
  display: flex;
  height: 52px;
  flex: 1;
}

.phone-field select {
  border: 1px solid #fee823;
  border-radius: 4px 0 0 4px;
  background-color: #ffffff;
  height: 52px;
  width: 57px;
  border-right: none;
  outline: none;
  padding: 0 6px;
  gap: 5px;
}

.tel-no {
  border-radius: 0 4px 4px 0 !important;
  border-left: 1px solid #000000 !important;
  padding-left: 7px !important;
}


.quote-details {
  display: flex;
  gap: 20px;
}

.why-use-packers {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-use-packers .card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 12px;
  background-color: #000000;
  color: #ffffff;
}

.why-use-packers .card h3 {
  margin-bottom: 18px;
}

.card p {
  line-height: 28px !important;
}

.why-use-packers .card .points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.points .point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.points .point img {
  width: 32px;
  height: 32px;
}

.free-qoute-section-img {
  width: 376px;
  height: 326.7px;
}

.custom-date-container {
  position: relative;
}

.custom-date-input {
  cursor: pointer;
  box-sizing: border-box;
}

.custom-date-input::-webkit-datetime-edit {
  opacity: 0;
}

.custom-date-input.has-value::-webkit-datetime-edit {
  opacity: 1;
}

.custom-date-input::before {
  content: "(Select Date)";
  position: absolute;
  color: #999;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-date-input.has-value::before {
  display: none;
}

.custom-date-input::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.calendar-icon-image {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* Ispe click na ho, input pe ho */
  width: 24px;
  height: 24px;
}





/*-------------------
    Tablet view
-------------------*/
@media(max-width: 1024px) {
  .container {
    padding: 50px 40px;
  }

  .get-quote-form {
    min-width: unset !important;
    margin: 0 auto;
  }

  .center {
    text-align: center;
  }

  .quote-details {
    flex-direction: column;
  }

  .why-use-packers {
    flex-direction: row;
    max-width: unset;
  }

  .free-qoute-section-img {
    max-width: 255px;
    max-height: 221.5px;
    width: 100%;
    height: 100%;
  }
}






/*-------------------
    Mobile view
-------------------*/
@media(max-width: 767px) {
  .container {
    padding: 36px 24px;
  }

  .get-quote-form {
    padding: 21px 16px;
    gap: 43px;
  }

  .get-quote-form h2 {
    text-align: center;
  }

  .why-use-packers {
    flex-direction: column;
    align-items: center;
  }

  .free-qoute-section-img {
    max-width: 324px;
    max-height: 281.5px;
    width: 100%;
    height: auto;
  }

  .why-use-packers .card {
    padding: 18px;
  }
}





/*-----------------------*/
@media(min-width: 1025px) and (max-width: 1245px) {
  .form .row-2 {
    flex-direction: column;
  }

  .form .row-2 input {
    flex: unset !important;
  }
}

@media (max-width: 620px) {
  .form .row-2 {
    flex-direction: column;
  }

  .form .row-2 input {
    flex: unset !important;
  }
}

@media(max-width: 400px) {
  .get-quote-form h2 {
    max-width: 194px;
  }
}