*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0 0 64px 0;
  color: #222;
  font-family: "Red Hat Display", sans-serif;
}
.red-hat-display {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* HERO SECTION */
.hero-section {
  display: flex;
  justify-content: center;
  min-height: fit-content;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/assets/icons/Hero.png") no-repeat center center/cover;
  padding: 40px 0;
}
.hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1250px;
  height: fit-content;
}
.hero-content {
  color: #fff;
  max-width: 700px;
  margin-right: 60px;
  align-self: center;
  border-radius: 16px;
  padding: 40px 30px 40px 0px;
}

.hero-content h1 {
  font-size: 2.3rem;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.divider {
  width: 40px;
  height: 3px;
  background: #00b3b3;
  margin-bottom: 18px;
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.03rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(36, 48, 66, 0.08);
  padding: 36px 28px;
  min-width: 340px;
  max-width: 360px;
  align-self: center;
  font-family: "Red Hat Display", sans-serif;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form h2 {
  color: #242f42;
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #e3376d 0%, #ed814a 100%);
  margin: 10px auto 16px auto;
  border-radius: 2px;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="number"],
.hero-form select {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #d5d8e2;
  border-radius: 4px;
  background: white;
  width: 100%;
}

input::placeholder,
select::placeholder {
  color: #272c3e;
  opacity: 1;
}
.small-select {
  width: 60px;
  min-width: 50px;
  max-width: 90px;
  font-size: 1rem;
  padding: 6px 8px;
  background: transparent;
  border: none;
  outline: none;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 4px;
}

.input-row img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 3px;
}

.hero-form .checkbox-row {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  gap: 8px;
  color: #888;
}
.checkbox-row label{
  margin-bottom: 0;
}

.hero-form .checkbox-row a {
  color: #f2573d;
  text-decoration: underline;
  font-size: 0.93rem;
}

.hero-form button {
  background: #f94d1d;
  color: #fff;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.hero-form button:hover {
  background: #ff4919;
}
/* Custom Dropdown Styles */
.custom-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.dropdown-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #242f42;
  font-weight: 500;
}

.custom-dropdown {
  position: relative;
  user-select: none;
  margin-bottom: 8px;
}

.dropdown-selected {
  padding: 11px 14px;
  background: #fff;
  border: 1px solid #d5d8e2;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-selected:after {
  content: "";
  border: solid #888;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  margin-left: 12px;
}

.dropdown-options {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #d5d8e2;
  border-radius: 12px;
  box-shadow: 0 6px 26px rgba(36, 48, 66, 0.09);
  z-index: 20;
  padding: 12px 0;
  max-height: 252px;
  overflow-y: auto;
}

.custom-dropdown.open .dropdown-options {
  display: block;
}

/* Option Style */
.dropdown-option {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 1.09rem;
  color: #181e1f;
  cursor: pointer;
  gap: 12px;
  transition: background 0.12s;
}

.dropdown-option:hover {
  background: #fcf8f7;
}

.dropdown-option input[type="radio"] {
  accent-color: black;
  margin-right: 9px;
}
.hero-form-mobile{display: none;}

@media (max-width: 950px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/assets/icons/HeroPhone.png") no-repeat center center/cover;
  }
  .hero-form-desktop{
    display: none;
  }
  .hero-form-mobile{
    display: flex;
    justify-content: center;
    margin-top: -100px;
    z-index: 100;
    padding: 20px 0;
  }
  .hero-content{
    padding: 20px;
  }
  .mobile-price {
    font-size: 20px;
    color: black;
    font-weight: bold;
  }
  .hero-form{
    border: 1px solid #00000011;
  }
  .hero-content {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .hero-content-wrapper {
    min-width: fit-content;
    flex-direction: column;
    align-items: center;
  }
}
.container {
  max-width: 1200px;
  width: 85%;
  margin: 30px auto;
  padding: 0 24px;
}
.section-header-international h2 {
  font-size: 35px;
  margin-bottom: 18px;
  font-weight: bold;
}
.section-header-international {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.view-all-btn {
  background: linear-gradient(90deg, #E3376D 0%, #ED814A 100%);
  border: none;
  color: #fff;
  padding: 12px 40px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.18s;
}
.section-divider-international {
  display: flex;
  align-items: center;
  margin-bottom: 32px;  /* Space below divider */
  margin-top: -12px;     /* Pull closer to heading if needed */
}

.divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6998;  /* Icon color */
  font-size: 1.12rem;  /* Adjust size as needed */
  margin-right: 8px;
}

.divider-line {
  flex: 1;
  height: 1px;
  border-radius: 4px;
  background: #C8D6DB;
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Always 4 cards per row */
  gap: 22px;
  margin-bottom: 52px;
}
.card-international, .card-wrapper-international {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(220, 220, 220, 0.23);
  padding: 0px 0px 14px 0px;
  transition: box-shadow 0.16s, transform 0.13s;
  display: flex;
  flex-direction: column;
  border: 1px solid #96969540;
  cursor: pointer;
  min-height: 180px;
}
.card-header-international {
  display: flex;
  height: 70px;
  padding: 0px 20px;
  align-items: center;
  border-bottom: 1px solid #96969540;
}
.card-header-treatment-international {
  display: flex;
  padding: 14px 20px;
  align-items: center;
  border-bottom: 1px solid #96969540;
}
.card-international:hover {
  box-shadow: 0 4px 20px 0 rgba(255, 105, 152, 0.18);
  transform: translateY(-2px) scale(1.018);
}
.card-wrapper-international:hover {
  box-shadow: 0 4px 20px 0 rgba(255, 105, 152, 0.18);
  transform: translateY(-2px) scale(1.018);
}
.card-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #96969540;
  padding: 2px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 1.7rem;
  color: #7b61ff;
}
.card-title {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}
.card-title-treatment-international {
  font-weight: 600;
  font-size: 18px;
  padding: 20px 20px 0px 20px;
  color: #222;
}
.card-desc-international {
  font-size: 14px;
  color: #545454;
  line-height: 1.55;
  padding: 20px;
  flex: 1;
}
.price {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}
.onwards{
  font-weight: normal;
  font-size: 14px;
  margin: 0;
}
.card-mobile { display: none; }
@media (max-width: 700px) {
  .card-wrapper-international, .treatment-card-international{
    min-height: fit-content;
    border: none;
    padding: 10px;
  }
  .card-mobile{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  .card-mobile p{
    font-size: 10px;
  }
  .card-desktop{
    display: none;
  }
  .container {
    padding: 0 4vw;
  }
  .section-header-international h2{
    font-size: 20px;
  }
  .view-all-btn{
    padding: 8px 30px;
    font-size: 12px;
  }
  .section-header-international {
    gap: 18px;
    align-items: center;
  }
  .section-divider-international{
    margin-left: 10px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr); /* Show 2 cards in a row */
    gap: 20px;
  }
}


/* Modal Overlay and Centering */
.modal-overlay {
  position: fixed;
  z-index: 3000;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(31,37,47,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s;
}

/* Modal Container */
.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 450px;
  width: 98vw;
  padding: 34px 26px 22px 26px;
  box-shadow: 0 6px 42px 1px #0002;
  position: relative;
  font-family: "Red Hat Display", sans-serif;
  animation: slideUpIn 0.22s;
}

/* Close Button */
.close-modal {
  position: absolute; right: 12px; top: 16px;
  font-size: 28px;
  color: #212121B3;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.close-modal:hover { color: #E3356E; }

.modal-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.01em;
  margin: 0 0 8px 0;
  font-family: "Red Hat Display", sans-serif;
}
.modal-underline {
  width: 160px; height: 3px;
  margin: 0 auto 30px auto;
  background: linear-gradient(90deg, #E4376D 0%, #ED824A 100%);
  border-radius: 3px;
}
.req { color: #E3356E; margin-left:3px; }

.modal-input, .modal-textarea, .modal-select {
  width: 100%;
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid #dedede;
  margin-bottom: 19px;
  margin-top: 3px;
  outline: none;
  background: #f9fafd;
  transition: border 0.12s;
}
.modal-input:focus, .modal-textarea:focus, .modal-select:focus {
  border: 1.5px solid #E4376D;
}
.modal-textarea {
  height: 74px; resize: none;
}
.modal-phone-row {
  display: flex;
  gap: 10px;
}
.modal-select {
  width: 80px;
  min-width: 75px;
  max-width: 90px;
  padding: 10px 4px;
}

/* Footer row */
.modal-footer-row {
  margin-bottom: 16px;
  font-size: 13px;
  color: #36394d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tnc-link { color: #ED8349; text-decoration: underline; cursor: pointer; }

.modal-submit-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 13px 0;
  font-size: 16px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  color: #fff;
  background: #F94D1D;
  margin-bottom: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: filter 0.13s;
}
.modal-submit-btn:hover { filter: brightness(0.98); }
.modal-whatsapp-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 11px 0;
  font-size: 16px;
  background: #25CC63;
  color: #fff;
  font-weight: 600;
  margin-top: 3px;
  cursor: pointer;
  font-family: "Red Hat Display", sans-serif;
  display: flex; align-items: center; justify-content: center;
  transition: filter 0.13s;
}
.modal-whatsapp-btn:hover { filter: brightness(0.99); }

/* Animations */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUpIn { from{transform:translateY(30px);} to{transform:translateY(0);} }

@media (max-width: 520px) {
  .modal-content { padding: 16px 4vw; }
}
