<style>
  :root {
    --deep: #041b4a;
    --blue: #0b63d8;
    --blue2: #2f8cff;
    --cyan: #59c7ff;
    --bg: #f7faff;
    --text: #071b3f;
    --muted: #5b6f94;
    --border: rgba(11, 99, 216, 0.14);
  }

  body {
    margin: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
  }

  .hotel-hero {
    min-height: 200px;
    padding: 120px 24px 0;
    background:
      linear-gradient(90deg, rgba(4, 27, 74, 0.96), rgba(4, 27, 74, 0.58)),
      url("ashgabat-night.jpg") center/cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .hotel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:  linear-gradient(90deg, #0a428c, #ffffff00),
      url(https://www.ashgabat-white-city.com/themes/demo/assets/img/100+.jpg) center/cover no-repeat;
    top: 0;
    margin-left: auto;
    width: 50%;
    height: 100%;
    z-index: 1;
  }
  
  .hotel-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #0a428c;
    opacity: 1;
  }

  .hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .breadcrumb {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hotel-hero h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.05em;
  }

  .hotel-hero p {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
  }

  .hotel-layout {
    max-width: 1180px;
    margin: -90px auto 80px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    position: relative;
    z-index: 5;
  }

  .hotel-form-card,
  .hotel-info-card {
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(11, 99, 216, 0.14);
  }

  .hotel-form-card {
    padding: 38px;
  }

  .form-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
  }

  .title-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #eef5ff;
    color: var(--blue);
    font-size: 30px;
  }

  .form-title h2 {
    margin: 0;
    font-size: 30px;
    color: var(--deep);
    letter-spacing: -0.04em;
  }

  label {
    display: block;
    margin: 0 0 9px;
    color: var(--deep);
    font-size: 14px;
    font-weight: 900;
  }

  input,
  select {
    width: -webkit-fill-available;
    height: 57px;
    border-radius: 17px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0 18px;
    color: var(--deep);
    font-size: 15px;
    outline: none;
    margin-bottom: 22px;
    transition: 0.25s ease;
  }

  input:focus,
  select:focus {
    border-color: rgba(11, 99, 216, 0.55);
    box-shadow: 0 0 0 4px rgba(11, 99, 216, 0.08);
  }

  input::placeholder {
    color: #9aabc7;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .hotel-form-card button {
    width: 100%;
    height: 62px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(11, 99, 216, 0.28);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 17px;
  }
  @media (max-width: 620px) {
    .hotel-form-card button {
      font-size: 13px;
    }
    .hotel-form-card button svg {
      width: 20px;
      height: 20px;
    }
  }
  .hotel-form-card button svg {
    position: absolute;
    right: 24px;
  }

  .hotel-form-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(11, 99, 216, 0.36);
  }

  .hotel-info-card {
    padding: 34px;
    height: fit-content;
  }

  .date-box {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }

  .date-icon,
  .info-item span {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: #eef5ff;
    color: var(--blue);
    font-weight: 900;
  }

  .date-box h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--deep);
  }

  .date-box p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
  }

  .info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
  }

  .info-item:last-child {
    margin-bottom: 0;
  }

  .info-item h4 {
    margin: 0 0 8px;
    color: var(--deep);
    font-size: 18px;
  }

  .info-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
  }

  @media (max-width: 960px) {
    .hotel-layout {
      display: flex;
      flex-direction: column-reverse;
    }

    .hotel-info-card {
      order: -1;
    }
  }

  @media (max-width: 620px) {
    .hotel-hero {
      padding: 90px 18px 130px;
    }

    .hotel-hero h1 {
      font-size: 44px;
    }

    .hotel-layout {
      padding: 0 16px;
      margin-top: -80px;
    }

    .hotel-form-card,
    .hotel-info-card {
      border-radius: 26px;
    }

    .hotel-form-card {
      padding: 24px;
    }

    .form-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }
  .padding-l-62 {
    padding-left: 62px !important;
  }
  .field {
    margin-bottom: 22px;
  }

  .field label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #041b4a;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
  }

  .custom-select {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
  }

  .margin-b-10 {
    margin-bottom: 10px;
  }

  .cs-selected {
    height: 56px;
    border-radius: 16px;
    border: 1.5px solid rgba(11, 99, 216, 0.15);
    background: #f7faff;
    padding: 0 16px 0 16px;
    color: #9aabc7;
    font-size: 14px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.22s;
    position: relative;
    justify-content: space-between;
  }

  .cs-selected.has-value {
    color: #041b4a;
    font-weight: 600;
  }

  .cs-selected .cs-chevron {
    position: absolute;
    right: 14px;
    font-size: 18px;
    color: #0b63d8;
    transition: transform 0.25s;
  }

  .custom-select.open .cs-selected {
    border-color: rgba(11, 99, 216, 0.5);
    box-shadow: 0 0 0 4px rgba(11, 99, 216, 0.08);
    border-radius: 16px 16px 0 0;
    background: #fff;
  }

  .cs-selected svg {
    transition: transform 0.25s;
  }

  .custom-select.open .cs-selected svg {
    transform: rotate(180deg);
  }

  .cs-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid rgba(11, 99, 216, 0.5);
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow:
      0 0 0 4px rgba(11, 99, 216, 0.08),
      0 18px 40px rgba(11, 99, 216, 0.1);
    z-index: 99;
    overflow: hidden;
    list-style: none;
    padding: 6px 0 8px;
    margin: 0;
  }

  .custom-select.open .cs-dropdown {
    display: block;
  }

  .cs-dropdown li {
    padding: 13px 16px;
    font-size: 14px;
    color: #041b4a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.15s;
    border-radius: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .cs-dropdown li .hotel-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b63d8;
    font-size: 17px;
    flex-shrink: 0;
  }

  .cs-dropdown li .hotel-name {
    font-weight: 600;
    font-size: 14px;
  }
  .cs-dropdown li .hotel-tag {
    font-size: 11px;
    color: #5b6f94;
    margin-top: 1px;
  }

  .cs-dropdown li:hover {
    background: #f0f6ff;
  }

  .cs-dropdown li.active {
    background: #eef5ff;
  }
  .cs-dropdown li.active .hotel-icon {
    background: #0b63d8;
    color: #fff;
  }
  .cs-dropdown li.active .hotel-name {
    color: #0b63d8;
  }

  .cs-dropdown li .check-icon {
    margin-left: auto;
    font-size: 16px;
    color: #0b63d8;
    opacity: 0;
  }
  .cs-dropdown li.active .check-icon {
    opacity: 1;
  }

  .cs-divider {
    height: 1px;
    background: rgba(11, 99, 216, 0.08);
    margin: 4px 0;
  }

  .btn {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b63d8, #2f8cff);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 36px rgba(11, 99, 216, 0.28);
    transition: all 0.25s;
        font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 6px;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(11, 99, 216, 0.36);
  }
  .inp-img {
    position: relative;
  }
  .img-30 {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 53px;
    left: 18px;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }

  input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
  }

  input[type="date"]:not(:valid) {
    color: #9aabc7;
  }

  input[type="date"]:not(:valid)::before {
    content: "mm/dd/yyyy";
    color: #9aabc7;
    pointer-events: none;
  }
  input[type="date"]:not([value]):not(:focus) {
    color: transparent;
  }

  input[type="date"]:not([value]):not(:focus)::before {
    content: "mm/dd/yyyy";
    color: #9aabc7;
    position: absolute;
    left: 62px;
    pointer-events: none;
  }
  .img-40 {
    width: 40px;
    height: 40px;
  }
  .date-icon-2 {
    border-radius: 50%;
  }

  .img-35-r {
    width: 35px;
    height: 35px;
  }

  /* phone */
  .phone-wrapper {
    position: relative;
  }

  .dropdown-selected {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 56px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    background: #f8fafc;
    border: 1px solid #ddd;
    border-radius: 15px 0 0 15px !important;
    z-index: 10;
  }

  .dropdown-list {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;

    width: 260px;
    max-height: 250px;
    overflow-y: auto;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0;
    margin: 0;
    list-style: none;

    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }

  .dropdown-list li:hover {
    background: #f5f5f5;
  }

  .dropdown-list li:last-child {
    border-bottom: none;
  }

  .phone-wrapper {
    position: relative;
  }

  .dropdown-selected {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    background: #f8fafc;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    z-index: 10;
  }

  .dropdown-list {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;

    width: 260px;
    max-height: 250px;
    overflow-y: auto;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0;
    margin: 0;
    list-style: none;

    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }

  .dropdown-list li:hover {
    background: #f5f5f5;
  }

  .dropdown-list li:last-child {
    border-bottom: none;
  }
</style>