/* CARD CONTAINER */
.card {
  width: 720px;
  margin: 100px auto;
  padding: 30px;
  background: #111;
  border-radius: 16px;
  border: 1px solid #C8A96A;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  font-size: 50px;
}

/* TITLE */
.card h2 {
  color: #C8A96A;
  font-size: 50px;
  margin-bottom: 12px;
  font-weight: 600;
}


/* SUBTEXT */
.card p {
  font-size: 30px;
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
}

.card .link {
  color: #C8A96A;
  cursor: pointer;
  font-weight: 500;
}

/* OPTIONS CONTAINER */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* EACH OPTION */
.option {
  border: 1px solid rgba(200, 169, 106, 0.4);
  padding: 18px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #111;
  color: #fff;
  font-size: 30px;
}

.option span {
  font-size: 30px;
}

/* HOVER EFFECT */
.option:hover {
  border-color: #C8A96A;
  box-shadow: 0 4px 12px rgba(200,169,106,0.3);
}

/* ACTIVE SELECTION */
.option.active {
  border: 2px solid #C8A96A;
  background: rgba(200,169,106,0.1);
}

/* RADIO BUTTON */
.option input[type="radio"] {
  margin-right: 10px;
  accent-color: #C8A96A;
}

/* ARROW */
.arrow {
  font-size: 18px;
  color: #C8A96A;
  transition: transform 0.3s ease;
}

/* ROTATE ARROW WHEN OPEN */
.option.open .arrow {
  transform: rotate(180deg);
}

/* DROPDOWN CONTENT */
.dropdown {
  margin-top: 10px;
  font-size: 20px;
  color: #ccc;
  display: none;
  padding-left: 28px;
}

/* SHOW DROPDOWN */
.option.open .dropdown {
  display: block;
}

/* STEPS */
#step-2, #step-3, #step-4 {
  display: none;
}

/* ROOM ITEMS */
.room-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  background: #111;
  border: 1px solid #eee;
  font-size: 25px;
}

.room-input {
  width: 60px;
  padding: 6px;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.room-item:hover {
  border-color: #C8A96A;
  box-shadow: 0 4px 12px rgba(200,169,106,0.3);
}

/* COUNTER */
.counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter button {
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #C8A96A;
  color: #111;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}

.counter button:hover {
  background: #b89655;
  box-shadow: 0 4px 12px rgba(200,169,106,0.3);
}

.counter span {
  font-size: 18px;
  min-width: 28px;
  color: #fff;
}

/* PACKAGE UI */
.package {
  border: 1px solid rgba(200,169,106,0.3);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  background: #111;
  color: #fff;
}

.package:hover {
  border-color: #C8A96A;
  box-shadow: 0 5px 15px rgba(200,169,106,0.2);
}

.package.active {
  border: 2px solid #C8A96A;
  background: rgba(200,169,106,0.08);
}

.package span {
  color: #C8A96A;
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: 600;
}

.package ul {
  padding-left: 20px;
  color: #bbb;
  font-size: 20px;
  line-height: 2;
}

.package-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin: 10px 0 15px;
  display: block;
}

.package input[type="radio"] {
  margin-right: 10px;
  accent-color: #C8A96A;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 16px; /* better spacing between fields */
}

form input,
form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(200,169,106,0.3);
  background: #111;
  color: #fff;
  font-size: 16px; /* reduced from 30px */
  box-sizing: border-box;
}

/* Placeholder */
form input::placeholder {
  color: #777;
  font-size: 16px; /* match input size */
}

/* Focus state */
form input:focus,
form select:focus {
  border-color: #C8A96A;
  outline: none;
}

/* Label styling (important for clarity) */
form label {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 4px;
}

/* Checkbox section */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #C8A96A; /* gold theme */
  cursor: pointer;
}

.form-checkbox label {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  line-height: 1.4;
}

/* Buttons */
form .form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

form button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: #C8A96A;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.phone-field {
  display: flex;
  align-items: center;
  border: 1px solid rgba(200,169,106,0.3);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.phone-field .flag {
  padding: 10px 12px;
  background: #1a1a1a;
  font-size: 20px; /* smaller */
  white-space: nowrap; /* prevents breaking */
  color: #ccc;
  border-right: 1px solid rgba(200,169,106,0.3);
}

.phone-field input {
  border: none;
  outline: none;
  flex: 1;
  padding: 12px;
  font-size: 16px;
  background: transparent;
  color: #fff;
}
/* BUTTONS */
.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.next,
.back {
  background: #d5be13;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Segoe UI',sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.next:hover,
.back:hover {
  border-color: #C8A96A;
  box-shadow: 0 6px 15px rgba(200,169,106,0.3);
}

/* SUB OPTIONS */
.sub-options {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.sub-option {
  flex: 1;
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  background: #111;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-option input {
  accent-color: #C8A96A;
}

.sub-option strong {
  display: block;
  font-size: 22px;
  color: #fff;
}

.sub-option span {
  font-size: 16px;
  color: #bbb;
}

.sub-option:hover {
  border-color: #C8A96A;
  box-shadow: 0 4px 12px rgba(200,169,106,0.3);
}

.sub-option.active {
  border: 2px solid #C8A96A;
  background: rgba(200,169,106,0.1);
}