.btn-primary {
    background: #e85c3b;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.btn-primary:hover {
    background: #cf4e2f;
}

.logo {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.card img {
    width: 50px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}


/* Booking */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field.full {
  margin-bottom: 25px;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c9a58c;
}

.submit-btn {
  width: 100%;
  background: #d95c42;
  color: white;
  padding: 16px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Contact */

.contact-info h3,
.contact-form h3 {
  color: #a14f3c;
  margin-bottom: 18px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-info h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-form input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #c9a58c;
  width: 100%;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.full-width {
  width: 100%;
  margin-top: 15px;
}


/* POPUP */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  display: flex;
}

.popup-booking-id {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #a14f3c;
}


.popup-box {
  background: linear-gradient(180deg, #f7ead9, #ffffff);
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border: 2px solid #d95c42;
}

.popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d95c42;
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.popup-box h3 {
  color: #a14f3c;
  margin-bottom: 10px;
  font-size: 24px;
}

.popup-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-close {
  padding: 12px 28px;
}


/* OTP POPUP */

.otp-box {
  max-width: 420px;
  position: relative;
}

.otp-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.otp-inputs {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}

.otp-inputs input {
  width: 48px;
  height: 48px;
  text-align: center;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid #c9a58c;
}

.otp-resend {
  margin-top: 15px;
  font-size: 13px;
}

.otp-resend span {
  color: #d95c42;
  cursor: pointer;
  font-weight: 500;
}



/* Footer */
.footer-logo {
    width: 70px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 13px;
    margin: 4px 0;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right img {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
}

.footer-right img:hover {
    transform: scale(1.5);
}

