/* Root Variables */
:root {
  --primary-color: #D4AF37;
  --primary-gold: #D4AF37;
  --deep-gold: #B8860B;
  --primary-dark: #8B7328;
}

/* Booking Wizard Styles */
.booking-wizard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Progress Steps */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
  padding: 0 20px;
}

.form-progress::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #999;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-color: #fff;
  color: #fff;
  transform: scale(1.1);
}

.progress-step.completed .step-number {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  text-align: center;
  max-width: 150px;
}

.progress-step.active .step-title {
  color: var(--primary-color);
  font-weight: 700;
}

.progress-step.completed .step-title {
  color: var(--primary-color);
  font-weight: 700;
}

/* Form Styles */
.wizard-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wizard-step-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-heading {
  text-align: center;
  margin-bottom: 40px;
}

.step-heading h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.step-heading p {
  font-size: 1rem;
  color: #000;
}

/* Booking Type Selector */
.booking-type-selector {
  margin-bottom: 30px;
}

.booking-type-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.booking-type-card {
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.booking-type-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.booking-type-card.selected {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.booking-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.booking-type-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
}

.booking-type-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.booking-type-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.booking-type-desc {
  font-size: 0.95rem;
  color: #666;
}

/* Form Groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.half {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #f44336;
}

.field-hint {
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

.required {
  color: #f44336;
}

.error-message {
  color: #f44336;
  font-size: 0.9rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Radio Groups */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-option input[type="radio"] {
  width: auto;
  cursor: pointer;
}

.radio-option label {
  cursor: pointer;
  margin: 0;
  font-weight: 500;
}

/* Colleague Section */
.colleague-entry-form {
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
}

.colleague-header {
  margin-bottom: 20px;
}

.colleague-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin: 0;
}

.colleague-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.added-colleagues {
  margin-top: 30px;
}

.added-colleagues h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.colleagues-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.colleague-item {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.colleague-info {
  flex: 1;
}

.colleague-summary {
  line-height: 1.8;
}

.colleague-summary strong {
  color: var(--primary-gold);
  font-size: 1.05rem;
}

.colleague-name,
.colleague-additional-info {
  color: #666;
  font-size: 0.95rem;
}

.colleague-actions {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-edit {
  background: #2196F3;
  color: #fff;
}

.btn-edit:hover {
  background: #1976D2;
  transform: translateY(-2px);
}

.btn-remove {
  background: #f44336;
  color: #fff;
}

.btn-remove:hover {
  background: #d32f2f;
  transform: translateY(-2px);
}

/* Review Section */
.review-section {
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

.review-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-gold);
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
}

.review-content table tr {
  border-bottom: 1px solid #e0e0e0;
}

.review-content table tr:last-child {
  border-bottom: none;
}

.review-content table td {
  padding: 12px 0;
  vertical-align: top;
}

.review-content table td:first-child {
  font-weight: 600;
  color: var(--primary-gold);
  width: 150px;
}

.review-content table td:last-child {
  color: #666;
}

/* Important Notice */
.booking-info-box.important-notice {
  background: #e8f5e8;
  border-radius: 12px;
  border: 3px solid #4caf50;
  margin: 25px 0;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.notice-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.notice-content {
  flex: 1;
}

.notice-content h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2e7d32;
  font-weight: 700;
}

.notice-content p {
  font-size: 1.05rem;
  color: #1b5e20;
  line-height: 1.6;
}

/* Terms and Conditions */
.terms-condition {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
}

.terms-condition input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.terms-condition label {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  cursor: pointer;
}

.terms-condition a {
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 600;
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

/* Buttons */
.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #FFD700, var(--primary-gold));
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: #fff;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Success Page */
.booking-success {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 5rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.booking-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.booking-success p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-success p strong {
  color: var(--primary-gold);
  font-weight: 700;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Table Type Selector */
.table-type-selector {
  margin-bottom: 30px;
}

.table-type-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.table-type-card {
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.table-type-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.table-type-card.selected {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
}

.table-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.table-type-card label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.table-type-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.table-type-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.table-type-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.table-type-price {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.table-type-seats {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}

.table-type-features {
  flex: 1;
  margin-bottom: 20px;
}

.table-type-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-type-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
  color: #555;
  font-size: 0.95rem;
}

.table-type-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.table-type-features li:last-child {
  border-bottom: none;
}

.table-type-desc {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Review Table Card */
.table-review-card {
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 10px 0;
}

.table-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.table-review-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
}

.table-review-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.table-review-seats {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
}

.table-review-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-review-features li {
  padding: 5px 0;
  color: #555;
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.table-review-features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 968px) {
  .booking-wizard {
    padding: 40px 20px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .wizard-form {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-type-options {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .table-type-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .table-type-card {
    padding: 25px;
  }
  
  .table-type-name {
    font-size: 1.4rem;
  }
  
  .table-type-price {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .booking-wizard {
    padding: 30px 15px;
  }

  .section-header h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .form-progress {
    padding: 0 5px;
    margin-bottom: 40px;
  }

  .progress-step {
    flex: 1;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    border-width: 2px;
  }

  .step-title {
    font-size: 0.75rem;
    max-width: 80px;
    line-height: 1.3;
  }

  .wizard-form {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .step-heading {
    margin-bottom: 30px;
  }

  .step-heading h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .step-heading p {
    font-size: 0.9rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .booking-type-options {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-type-card {
    padding: 20px;
  }

  .booking-type-icon {
    font-size: 2.5rem;
  }

  .booking-type-name {
    font-size: 1.3rem;
  }

  .booking-type-desc {
    font-size: 0.9rem;
  }

  .colleague-entry-form {
    padding: 20px 15px;
  }

  .colleague-header h4 {
    font-size: 1.2rem;
  }

  .colleague-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .colleague-actions {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .review-section {
    padding: 20px 15px;
  }

  .review-section h4 {
    font-size: 1.2rem;
  }

  .review-content table td {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .review-content table td:first-child {
    width: 120px;
    font-size: 0.85rem;
  }

  .step-actions {
    flex-direction: column-reverse;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .step-actions .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .success-actions {
    flex-direction: column;
    gap: 12px;
  }

  .success-actions .btn {
    width: 100%;
  }

  .booking-info-box.important-notice {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .notice-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .notice-content h4 {
    font-size: 1.4rem;
  }

  .notice-content p {
    font-size: 0.95rem;
  }

  .booking-success {
    padding: 40px 20px;
  }

  .success-icon {
    font-size: 4rem;
  }

  .booking-success h3 {
    font-size: 1.8rem;
  }

  .booking-success p {
    font-size: 1rem;
  }
  
  .table-type-options {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .table-type-card {
    padding: 20px;
  }
  
  .table-type-icon {
    font-size: 3rem;
  }
  
  .table-type-name {
    font-size: 1.3rem;
  }
  
  .table-type-price {
    font-size: 1.6rem;
  }
  
  .table-review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .booking-wizard {
    padding: 20px 10px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .form-progress {
    padding: 0;
    margin-bottom: 30px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-title {
    font-size: 0.7rem;
    max-width: 70px;
  }

  .wizard-form {
    padding: 15px 12px;
  }

  .step-heading {
    margin-bottom: 25px;
  }

  .step-heading h3 {
    font-size: 1.3rem;
  }

  .step-heading p {
    font-size: 0.85rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .field-hint {
    font-size: 0.8rem;
  }

  .booking-type-card {
    padding: 15px;
  }

  .booking-type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .booking-type-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .booking-type-desc {
    font-size: 0.85rem;
  }

  .colleague-entry-form {
    padding: 15px 12px;
  }

  .colleague-header h4 {
    font-size: 1.1rem;
  }

  .colleague-item {
    padding: 12px;
  }

  .colleague-actions {
    flex-direction: column;
    width: 100%;
  }

  .colleague-actions .btn-small {
    width: 100%;
    justify-content: center;
  }

  .review-section {
    padding: 15px 12px;
  }

  .review-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .review-content table td {
    padding: 8px 0;
    font-size: 0.85rem;
    display: block;
    width: 100% !important;
  }

  .review-content table td:first-child {
    font-weight: 700;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e0e0e0;
  }

  .review-content table tr {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .step-actions {
    gap: 10px;
    margin-top: 25px;
    padding-top: 15px;
  }

  .step-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .booking-info-box.important-notice {
    padding: 15px;
    gap: 12px;
  }

  .notice-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .notice-content h4 {
    font-size: 1.2rem;
  }

  .notice-content p {
    font-size: 0.9rem;
  }

  .terms-condition {
    gap: 8px;
  }

  .terms-condition label {
    font-size: 0.85rem;
  }

  .booking-success {
    padding: 30px 15px;
  }

  .success-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .booking-success h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .booking-success p {
    font-size: 0.9rem;
  }

  .success-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .table-type-card {
    padding: 15px;
  }
  
  .table-type-icon {
    font-size: 2.5rem;
  }
  
  .table-type-name {
    font-size: 1.2rem;
  }
  
  .table-type-price {
    font-size: 1.4rem;
  }
  
  .table-type-features li {
    font-size: 0.9rem;
    padding-left: 20px;
  }
}

@media (max-width: 375px) {
  .booking-wizard {
    padding: 15px 8px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .wizard-form {
    padding: 12px 10px;
  }

  .step-heading h3 {
    font-size: 1.2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 8px;
    font-size: 0.85rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .step-title {
    font-size: 0.65rem;
    max-width: 60px;
  }
}
