* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.parking-options {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #e8f5ff, #ffffff);
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.parking-options h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1a202c;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  font-size: 1.5rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.card p {
  margin: 8px 0;
  font-size: 1rem;
}

.info-strip {
  margin-top: 40px;
  background-color: #0077b6;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.info-strip p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.info-strip button {
  background-color: white;
  color: #0077b6;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.info-strip button:hover {
  background-color: #e0f0ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #222;
}

.carport-highlight {
  position: relative;
  height: 100vh;
  background: url('your-carport-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.content-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.price {
  font-size: 1.4rem;
  margin: 10px 0;
  font-weight: bold;
}

.desc {
  font-size: 1rem;
  margin-bottom: 25px;
}

button {
  padding: 12px 24px;
  font-size: 1rem;
  color: #222;
  background-color: #ffcc00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #ffe066;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overlay {
    width: 90%;
    padding: 30px 20px;
  }

  .content-box h2 {
    font-size: 1.6rem;
  }

  .price {
    font-size: 1.2rem;
  }
}

.container1 {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 2rem 3rem 3rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
  
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #333;
}

header h1 {
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#toggleNight {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #555;
  transition: color 0.3s ease;
}

#toggleNight:hover {
  color: #007bff;
}
/* Progress Bar (continued) */
#progressbar li {
  position: relative;
  text-align: center;
  flex-grow: 1;
  font-weight: 600;
  font-size: 0.85rem;
  color: #bbb;
  padding-bottom: 0.5rem;
  cursor: default;
  transition: color 0.3s ease;
}

#progressbar li.active,
#progressbar li.completed {
  color: #007bff;
}

#progressbar li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 3px;
  background: #ddd;
  z-index: -1;
  transform: translateY(-50%);
}

#progressbar li.completed:not(:last-child)::after {
  background: #007bff;
}

#progressbar li i {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

/* Tabs content */
.tab-content {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.tab-content.active {
  display: block;
}

/* Form Elements */
label {
  display: block;
  margin: 1rem 0 0.3rem;
  font-weight: 600;
  color: #444;
}

input[type="text"],
input[type="number"],
input[type="time"],
input[type="email"],
input[type="date"],
select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  border: 1.8px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline-offset: 2px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="time"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

button:disabled,
button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

button:hover:not(:disabled) {
  background-color: #0056b3;
}

/* Review Section */
.review-item {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #222;
}

/* Superscript required star */
sup {
  color: red;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Night Mode */
body.night {
  background-color: #121212;
  color: #eee;
}

body.night .container {
  background-color: #1e1e1e;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

body.night label {
  color: #ccc;
}

body.night input,
body.night select {
  background-color: #2b2b2b;
  border-color: #555;
  color: #eee;
}

body.night input::placeholder,
body.night select {
  color: #bbb;
}

body.night button {
  background-color: #3399ff;
}/* Reset & base */
* {
  box-sizing: border-box;
}

.container {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 2rem 3rem 3rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #333;
}

header h1 {
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#toggleNight {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #555;
  transition: color 0.3s ease;
}

#toggleNight:hover {
  color: #007bff;
}

/* Progress Bar */
#progressbar {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 2rem;
  list-style-type: none;
  user-select: none;
}

#progressbar li {
  position: relative;
  text-align: center;
  flex-grow: 1;
  font-weight: 600;
  font-size: 0.85rem;
  color: #bbb;
  padding-bottom: 0.5rem;
  cursor: default;
  transition: color 0.3s ease;
}

#progressbar li.active,
#progressbar li.completed {
  color: #007bff;
}

#progressbar li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 3px;
  background: #ddd;
  z-index: -1;
  transform: translateY(-50%);
}

#progressbar li.completed:not(:last-child)::after {
  background: #007bff;
}

#progressbar li i {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

/* Tabs content */
.tab-content {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.tab-content.active {
  display: block;
}

/* Form Elements */
label {
  display: block;
  margin: 1rem 0 0.3rem;
  font-weight: 600;
  color: #444;
}

input[type="text"],
input[type="number"],
input[type="time"],
input[type="email"],
input[type="date"],
select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  border: 1.8px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline-offset: 2px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="time"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

/* Buttons container */
.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
/* Responsive */




/* Navigation Buttons */
.next-btn,
.prev-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.next-btn:hover:not(:disabled),
.prev-btn:hover:not(:disabled) {
  background-color: #0056b3;
}

.next-btn:disabled,
.next-btn[disabled],
.prev-btn:disabled,
.prev-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Review Section */
.review-item {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #222;
}

/* Superscript required star */
sup {
  color: red;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Night Mode */
body.night {
  background-color: #121212;
  color: #eee;
}

body.night .container {
  background-color: #1e1e1e;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

body.night label {
  color: #ccc;
}

body.night input,
body.night select {
  background-color: #2b2b2b;
  border-color: #555;
  color: #eee;
}

body.night input::placeholder,
body.night select {
  color: #bbb;
}

body.night button {
  background-color: #3399ff;
}

body.night button:hover:not(:disabled) {
  background-color: #66b3ff;
}

/* Confetti canvas styling */
#confetti-canvas {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
}

body.night button:hover:not(:disabled) {
  background-color: #66b3ff;
}

/* Confetti canvas styling */
#confetti-canvas {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
}

/* Progress Bar */
#progressbar {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 2rem;
  list-style-type: none;
  user-select: none;
}

#progressbar li {
  position: relative;
  text-align: center;
  flex-grow: 1;
  font-weight: 600;
  font-size: 0.85rem;
  color: #bbb;
  padding-bottom: 0.5rem;
}