/* Modern Jones Autos Booking Form - Sidebar + Smart Defaults Design */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

.registration-ui {
  background: linear-gradient(to bottom, #f8d038 0%, #f5ca2e 100%);
  padding: 0.25em 1em 0.25em 1.75em !important;
  font-weight: bold;
  font-size: 2em;
  border-radius: 5px !important;
  border: 1px solid #000 !important;
  box-shadow: 1px 1px 1px #ddd;
  position: relative;
  font-family: helvetica, ariel, sans-serif;
  text-transform: uppercase;
}
.unit:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px dashed #f8d038;
}
.input-box {
  position: relative;
}
.unit {
  content: "GB";
  font-family: helvetica, ariel, sans-serif;
  font-weight: bold;
  display: block;
  width: 43px;
  height: 100%;
  font-size: 1.1em;
  background: #063298;
  position: absolute;
  top: 0;
  border-radius: 5px 0 0 5px;
  color: #f8d038;
  line-height: 100px;
  padding-left: 9px;
}

:root {
  --primary-color: #02468d;
  --primary-dark: #013966;
  --primary-light: #0356b3;
  --accent-color: #e62432;
  --accent-dark: #c41e2b;
  --success-color: #28a745;
  --success-dark: #218838;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --dark-color: #202124;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f4;
  --gray-200: #e8eaed;
  --gray-300: #dadce0;
  --gray-400: #9aa0a6;
  --gray-500: #5f6368;
  --gray-600: #3c4043;
  --gray-700: #202124;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(2, 70, 141, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(2, 70, 141, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(2, 70, 141, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(2, 70, 141, 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

#jones-booking-form {
  width: 100%;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

/* All buttons in booking form */
.elementor-kit-5 .jones-booking-form button,
#jones-booking-form button,
.elementor-kit-5 .jones-booking-form .btn,
#jones-booking-form .btn {
  border-radius: 0 !important;
  font-size: 13px !important;
}

/* Action buttons hover states - red background with white text */
.elementor-kit-5 .jones-booking-form .btn-primary:hover,
#jones-booking-form .btn-primary:hover {
  background: #e62432 !important;
  background-image: none !important;
  color: #ffffff !important;
}

.elementor-kit-5 .jones-booking-form .btn-secondary:hover,
#jones-booking-form .btn-secondary:hover {
  background: #e62432 !important;
  background-image: none !important;
  color: #ffffff !important;
}

/* Main Layout Container */
.jones-booking-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--white);
}

.jones-booking-container h3 {
  font-size: 1.2rem !important;
}

/* Sidebar Progress */
.booking-sidebar {
  width: 320px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.booking-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.sidebar-content {
  position: relative;
  z-index: 1;
}

.company-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.company-tagline {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 400;
}

/* Progress Steps */
.progress-steps {
  margin-bottom: 2rem;
}

.progress-step {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.progress-step.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-step.completed {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.progress-step.completed:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.progress-step.completed .step-icon {
  background: var(--white);
  color: var(--primary-color);
}

.progress-step.active .step-icon {
  background: var(--accent-color);
  color: var(--white);
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.step-details {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.3;
}

/* Price Summary */
.price-summary {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.price-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-breakdown {
  margin-bottom: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.price-item.total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Need Help Section */
.need-help-section {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.need-help-section:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.help-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.help-content {
  flex: 1;
}

.help-content a {
  color: #fff !important;
}

.help-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.help-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.help-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.help-phone:hover {
  color: #ffd700;
  transform: scale(1.05);
}

/* Main Content Area */
.booking-content {
  flex: 1;
  padding: 2rem 3rem;
  overflow-y: auto;
}

/* Step Sections */
.step-section {
  margin-bottom: 2rem;
}

.step-section.hidden {
  display: none;
}

.step-header {
  margin-bottom: 1.5rem;
}

.step-header h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-subtitle {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.5;
}

/* Vehicle Registration Section */
.vehicle-input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.uk-reg-plate {
  width: 220px;
  height: 60px;
  padding: 0 1rem;
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  border: 3px solid var(--gray-700);
  border-radius: 6px;
  font-family: "Inter", monospace;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-700);
  box-shadow: var(--shadow-md);
  position: relative;
}

.uk-reg-plate::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 28px;
  background: linear-gradient(180deg, #003399, #0066cc);
  border-radius: 2px;
}

.uk-reg-plate::after {
  content: "GB";
  position: absolute;
  left: 14px;
  bottom: 6px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.uk-reg-plate:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(2, 70, 141, 0.1);
}

.lookup-btn {
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lookup-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.lookup-btn:disabled {
  background: var(--gray-300);
  cursor: not-allowed;
  transform: none;
}

/* Vehicle Status Indicators */
.vehicle-status {
  max-width: 400px;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.vehicle-status.show {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-status.status-typing {
  background: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.2);
  color: var(--gray-600);
}

.vehicle-status.status-incomplete {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #856404;
}

.vehicle-status.status-searching {
  background: rgba(2, 70, 141, 0.1);
  border: 1px solid rgba(2, 70, 141, 0.2);
  color: var(--primary-color);
}

.vehicle-status.status-found {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: var(--success-color);
  font-weight: 600;
}

.vehicle-status.status-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: var(--danger-color);
}

.status-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.status-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(2, 70, 141, 0.3);
  border-radius: 50%;
  border-top: 2px solid var(--primary-color);
  animation: spin 1s linear infinite;
}

.status-message {
  font-size: 0.875rem;
}

/* Vehicle Details Card */
.vehicle-details-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin: 1rem 0;
  display: none;
}

.vehicle-details-card.show {
  display: block;
  animation: slideInUp 0.3s ease-out;
}

.vehicle-reg-display {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vehicle-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.vehicle-info-item {
  text-align: center;
}

.vehicle-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.vehicle-info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Services Section */
.services-container {
  margin-bottom: 2rem;
}

.smart-defaults {
  background: linear-gradient(
    135deg,
    rgba(2, 70, 141, 0.05),
    rgba(2, 70, 141, 0.02)
  );
  border: 2px solid rgba(2, 70, 141, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.defaults-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.defaults-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recommended-badge {
  background: var(--accent-color);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
}

.defaults-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.default-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.service-name {
  font-weight: 500;
  color: var(--gray-700);
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
}

.customize-toggle {
  background: none;
  border: none !important;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.7rem;
  padding: 10px 20px 10px 20px !important;
}

.customize-toggle:hover {
  color: var(--accent-color);
}

/* Service Categories */
.service-categories {
  display: none;
}

.service-categories.show {
  display: block;
  animation: slideInDown 0.3s ease-out;
}

.service-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-header {
  background: var(--gray-50);
  padding: 0rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.category-header:hover {
  background: rgba(2, 70, 141, 0.05);
}

.category-title {
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}

.category-toggle {
  background: none !important;
  border-radius: none !important;
  border: none !important;
  color: var(--gray-500) !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}

.category-services {
  padding: 1rem 1.5rem;
  display: none;
}

.category-services.show {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
}

.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.service-option:hover {
  border-color: var(--primary-color);
  background: rgba(2, 70, 141, 0.02);
}

.service-option.selected {
  border-color: var(--primary-color);
  background: rgba(2, 70, 141, 0.05);
  box-shadow: var(--shadow-sm);
}

.service-checkbox {
  margin-right: 0.75rem;
  accent-color: var(--primary-color);
}

.service-info {
  flex: 1;
}

.service-option .service-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.service-description {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.service-option .service-price {
  background: rgba(2, 70, 141, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

/* Customer Details Form */
.customer-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 70, 141, 0.1);
}

.form-input.error {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Booking Confirmation */
.booking-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-section p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.summary-total {
  text-align: center;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Trust and Payment Messages */
.trust-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1),
    rgba(40, 167, 69, 0.05)
  );
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 500px;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-text {
  text-align: center;
  color: var(--gray-700);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--success-color);
  font-weight: 600;
}

.payment-info {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.payment-icon {
  width: 24px;
  height: 24px;
  background: var(--success-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

.payment-text {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.3;
}

.payment-text span {
  opacity: 0.8;
  font-size: 0.75rem;
}
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 0.875rem 2rem;
  border: none !important;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
}

.btn-secondary:hover {
  background: var(--gray-300);
  transform: translateY(-1px);
}

.btn:disabled {
  background: var(--gray-300);
  color: var(--gray-500);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success State */
.booking-success {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-dark)
  );
  color: var(--white);
  border-radius: var(--border-radius-lg);
  margin: 2rem 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Loading States */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid currentColor;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
  .jones-booking-container {
    flex-direction: column;
  }

  .booking-sidebar {
    width: 100%;
    order: 2;
    padding: 1.5rem;
  }

  .booking-content {
    padding: 2rem;
    order: 1;
  }

  .progress-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .price-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .price-breakdown {
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .quick-book-btn {
    width: auto;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .booking-content {
    padding: 1.5rem;
  }

  .vehicle-input-group {
    flex-direction: column;
    align-items: center;
  }

  .vehicle-input-group {
    flex-direction: column;
    align-items: center;
  }

  .lookup-btn {
    width: 100%;
    max-width: 300px;
  }
}

.form-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.summary-sections {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.action-buttons {
  align-items: center;
}

.btn {
  width: 100%;
  max-width: 300px;
}

.trust-message {
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  margin: 1rem auto;
}

.trust-icon {
  font-size: 1.25rem;
}

@media (max-width: 480px) {
  .booking-sidebar {
    padding: 1rem;
  }

  .booking-content {
    padding: 1rem;
  }

  .step-header h2 {
    font-size: 1.5rem;
  }

  .defaults-services {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
