/* Car Booking Plugin - Redesigned Styles - Improved Mobile + UI Fixes */
:root {
  --primary-color: #0d754d;
  --primary-hover: #095638;
  --secondary-color: #d1963a;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --text-color: #333;
  --success-color: #27ae60;
  --error-color: #e74c3c;
}

.bcp-booking-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 480px) {
  .bcp-booking-form {
    padding: 15px 10px;
  }
}

@media (min-width: 1200px) {
  .bcp-booking-form {
    max-width: 600px;
  }
}

/* Alert Messages - Subtle */
.bcp-alerts {
  margin-bottom: 20px;
  min-height: 0;
}

.bcp-alert {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 15px;
  animation: slideDown 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.bcp-alert-error {
  background-color: #fff5f5;
  color: #d32f2f;
  border-left-color: #d32f2f;
}

.bcp-alert-success {
  background-color: #f1f8f4;
  color: #2e7d32;
  border-left-color: #2e7d32;
}

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

/* ===== ENHANCED CREATIVE STEPPER ===== */
.bcp-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 10px;
  background: linear-gradient(
    135deg,
    rgba(13, 117, 77, 0.04) 0%,
    rgba(209, 150, 58, 0.02) 100%
  );
  border-radius: 12px;
}

.bcp-stepper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--border-color) 0%,
    var(--primary-color) 50%,
    var(--border-color) 100%
  );
  z-index: 0;
  transform: translateY(-50%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .bcp-stepper::before {
    display: none;
  }
  .bcp-stepper {
    justify-content: center;
    flex-direction: row;
    padding: 15px;
    gap: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .bcp-stepper {
    padding: 12px;
    gap: 10px;
    margin-bottom: 15px;
  }
}

.bcp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bcp-step:hover {
  transform: translateY(-3px);
}

.bcp-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

@media (max-width: 480px) {
  .bcp-step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.bcp-step.completed .bcp-step-number::after {
  content: "✓";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border: 2px solid white;
  animation: popIn 0.4s ease;
}

@media (max-width: 480px) {
  .bcp-step.completed .bcp-step-number::after {
    width: 14px;
    height: 14px;
    font-size: 8px;
    top: -1px;
    right: -1px;
  }
}

.bcp-step.active .bcp-step-number {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a5a3a 100%);
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(13, 117, 77, 0.3);
}

.bcp-step.completed .bcp-step-number {
  background-color: rgba(39, 174, 96, 0.1);
  color: var(--success-color);
  border-color: var(--success-color);
}

@keyframes popIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.bcp-step-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-align: center;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .bcp-step-label {
    font-size: 10px;
    letter-spacing: 0.2px;
  }
}

.bcp-step.active .bcp-step-label {
  color: var(--primary-color);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bcp-step.completed .bcp-step-label {
  color: var(--success-color);
}

/* Form Layout */
.bcp-form-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.bcp-form-step.active {
  display: block;
}

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

.bcp-form-step h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 480px) {
  .bcp-form-step h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* Grid */
.bcp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.bcp-form-row.single-column {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .bcp-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .bcp-form-row {
    gap: 10px;
    margin-bottom: 10px;
  }
}

/* Form Groups */
.bcp-form-group {
  position: relative;
}

.bcp-form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
}

@media (max-width: 480px) {
  .bcp-form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

.bcp-form-group input,
.bcp-form-group select {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: white;
  box-sizing: border-box;
  padding: 12px;
}

@media (max-width: 480px) {
  .bcp-form-group input,
  .bcp-form-group select {
    font-size: 14px;
    padding: 10px;
  }
}

.bcp-form-group input:focus,
.bcp-form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(13, 117, 77, 0.15);
}

/* Placeholder Styling - Chrome, Firefox, Safari Fix */
.bcp-form-group input::placeholder,
.bcp-form-group select::placeholder {
  color: #999;
  opacity: 1;
}

.bcp-form-group input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.bcp-form-group input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.bcp-form-group input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.bcp-form-group input:-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* Validation Feedback - Only Show on Error */
.bcp-validation-feedback {
  display: none;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
  color: var(--error-color);
}

.bcp-validation-feedback.show {
  display: block;
}

.bcp-form-group input.bcp-invalid {
  border-color: var(--error-color);
  background-color: #fff5f5;
}

.bcp-form-group input.bcp-valid {
  border-color: var(--success-color);
  background-color: #f1f8f4;
}


/* Buttons */
.bcp-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .bcp-form-actions {
    margin-top: 20px;
    gap: 10px;
  }
}

.bcp-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  min-width: 140px;
  text-align: center;
}

@media (max-width: 480px) {
  .bcp-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
  }
}

.bcp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Primary Button */
.bcp-btn-primary {
  background-color: var(--primary-color);
  color: white;
  flex: 1;
}

.bcp-btn-primary:hover:not(:disabled) {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 117, 77, 0.3);
}

/* ===== COMPACT SUMMARY BOX - OPTIMIZED FOR MOBILE ===== */
.bcp-summary-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .bcp-summary-box {
    margin-bottom: 15px;
  }
}

/* Summary Section Headers */
.bcp-summary-section {
  border-bottom: 1px solid #eee;
}

.bcp-summary-section:last-child {
  border-bottom: none;
}

.bcp-summary-section-title {
  background: #f5f5f5;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 12px;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 480px) {
  .bcp-summary-section-title {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* Summary Grid - Row-based layout */
.bcp-summary-rows {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.bcp-summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.bcp-summary-row:last-child {
  border-bottom: none;
  padding: 10px 12px;
}

@media (max-width: 768px) {
  .bcp-summary-row {
    grid-template-columns: 1fr;
    padding: 8px 10px;
  }

  .bcp-summary-row:last-child {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .bcp-summary-row {
    padding: 6px 8px;
  }

  .bcp-summary-row:last-child {
    padding: 6px 8px;
  }
}

.bcp-summary-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bcp-summary-label {
  font-weight: 600;
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .bcp-summary-label {
    font-size: 10px;
  }
}

.bcp-summary-value {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  word-break: break-word;
}

@media (max-width: 480px) {
  .bcp-summary-value {
    font-size: 13px;
  }
}

/* Price Section - Compact */
.bcp-summary-price {
  background: #f9f9f9;
  padding: 10px 12px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}

.bcp-summary-price .bcp-summary-label {
  font-size: 13px;
  margin-right: 0;
  color: #666;
}

.bcp-summary-price .bcp-summary-value {
  font-size: 16px;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .bcp-summary-price {
    padding: 8px 10px;
    font-size: 14px;
  }

  .bcp-summary-price .bcp-summary-label {
    font-size: 12px;
  }

  .bcp-summary-price .bcp-summary-value {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .bcp-summary-price {
    padding: 6px 8px;
    font-size: 13px;
  }

  .bcp-summary-price .bcp-summary-label {
    font-size: 11px;
  }

  .bcp-summary-price .bcp-summary-value {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .bcp-summary-row {
    grid-template-columns: 1fr;
    padding: 10px 12px;
  }

  .bcp-summary-row:last-child {
    padding: 10px 12px;
  }

  .bcp-summary-section-title {
    padding: 8px 12px;
    font-size: 12px;
  }

  .bcp-summary-label {
    font-size: 11px;
  }

  .bcp-summary-value {
    font-size: 14px;
  }

  .bcp-summary-price {
    padding: 10px 12px;
    font-size: 15px;
  }

  .bcp-summary-price .bcp-summary-value {
    font-size: 16px;
  }
}

/* ===== CREATIVE BACK NAVIGATION ===== */
.bcp-step-navigator {
  display: flex;
  align-items: center;
}

.bcp-step-nav-prev {
  background: transparent;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
}

.bcp-step-nav-prev:hover {
  background-color: rgba(13, 117, 77, 0.08);
  color: var(--primary-hover);
  transform: translateX(-3px);
}

.bcp-step-nav-prev:active {
  transform: translateX(-5px);
}

.bcp-step-nav-prev .bcp-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  font-weight: 700;
}

.bcp-step-nav-prev:hover .bcp-arrow {
  transform: translateX(-4px);
}

.bcp-step-nav-prev .bcp-nav-text {
  display: inline-block;
  position: relative;
}

.bcp-step-nav-prev:hover .bcp-nav-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
  animation: expandWidth 0.3s ease;
}

@keyframes expandWidth {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}

/* Step transitions - Creative animations */
.bcp-form-step {
  animation: fadeIn 0.5s ease;
}

.bcp-form-step {
  display: none;
}

.bcp-form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

/* Modern Calendar Component - Shadcn Inspired */
.bcp-calendar-wrapper {
  position: relative;
}

.bcp-calendar-input {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  padding: 12px 40px 12px 12px;
  background-color: white;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
}

.bcp-calendar-input:hover {
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 117, 77, 0.15);
}

.bcp-calendar-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(13, 117, 77, 0.15);
}

.bcp-calendar-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

/* Calendar Dropdown */
.bcp-calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 12px;
  margin-top: 6px;
  display: none;
  animation: calendarSlideIn 0.3s ease;
  min-width: 280px;
  max-width: 320px;
  width: 100%;
}

.bcp-calendar-dropdown.show {
  display: block;
}

@keyframes calendarSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Calendar Header */
.bcp-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.bcp-calendar-month-year {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  flex: 1;
}

.bcp-calendar-nav {
  display: flex;
  gap: 6px;
}

.bcp-calendar-nav-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.bcp-calendar-nav-btn:hover {
  background: var(--light-bg);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.bcp-calendar-nav-btn:active {
  transform: scale(0.95);
}

.bcp-calendar-nav-btn svg {
  width: 14px;
  height: 14px;
  transition: stroke 0.2s ease;
  display: block;
}

.bcp-calendar-nav-btn:hover svg {
  stroke: var(--primary-color);
}

/* Calendar Grid */
.bcp-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.bcp-calendar-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary-color);
  padding: 6px 2px;
}

.bcp-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.bcp-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 2px;
  min-height: 30px;
}

.bcp-calendar-day:hover:not(.disabled):not(.other-month) {
  background: var(--light-bg);
  border-color: #e2e8f0;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bcp-calendar-day.other-month {
  color: #9ca3af;
  cursor: default;
}

.bcp-calendar-day.selected {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(13, 117, 77, 0.3);
  z-index: 1;
}

.bcp-calendar-day.selected::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.05);
  }
}

.bcp-calendar-day.today {
  border-color: var(--primary-color);
  font-weight: 600;
  background: rgba(13, 117, 77, 0.05);
}

.bcp-calendar-day.today:not(.selected) {
  color: var(--primary-color);
}

.bcp-calendar-day.disabled {
  color: #d1d5db;
  cursor: not-allowed;
  opacity: 0.5;
}

.bcp-calendar-day.disabled:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

/* Responsive Calendar */
@media (max-width: 480px) {
  .bcp-calendar-dropdown {
    padding: 12px;
    margin-top: 6px;
  }
  
  .bcp-calendar-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  
  .bcp-calendar-month-year {
    font-size: 14px;
  }
  
  .bcp-calendar-nav-btn {
    width: 28px;
    height: 28px;
  }
  
  .bcp-calendar-weekday {
    font-size: 11px;
    padding: 6px 0;
  }
  
  .bcp-calendar-day {
    font-size: 13px;
  }
}

/* Enhanced Time Input Styling */
input[type="text"]#bcp-time {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  color: var(--primary-color);
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

input[type="text"]#bcp-time:hover {
  border-color: var(--primary-color);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 117, 77, 0.15);
}

input[type="text"]#bcp-time:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(13, 117, 77, 0.15);
  transform: translateY(-1px);
}

input[type="text"]#bcp-time::placeholder {
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
}

/* Responsive Time Input */
@media (max-width: 480px) {
  input[type="text"]#bcp-time {
    font-size: 16px;
    padding: 10px 14px;
    letter-spacing: 1px;
  }
}

/* Enhanced Price Display - Modern Design */
.bcp-price-display {
  display: none;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  text-align: center;
  animation: slideDown 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.bcp-price-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.bcp-price-display.show {
  display: block;
  animation: priceSlideIn 0.5s ease;
}

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

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

.bcp-price-label {
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bcp-price-label::before {
  font-size: 14px;
}

.bcp-price-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.bcp-price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.bcp-price-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -1px;
  line-height: 1;
}

.bcp-price-note {
  font-size: 11px;
  color: #64748b;
  font-style: italic;
}

/* Price Display Responsive */
@media (max-width: 768px) {
  .bcp-price-display {
    padding: 14px;
    margin: 14px 0;
    max-width: 100%;
  }
  
  .bcp-price-value {
    font-size: 26px;
  }
  
  .bcp-price-currency {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .bcp-price-display {
    padding: 12px;
    margin: 12px 0;
  }
  
  .bcp-price-label {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .bcp-price-value {
    font-size: 24px;
  }
  
  .bcp-price-currency {
    font-size: 14px;
  }
  
  .bcp-price-note {
    font-size: 10px;
  }
}

/* Phone Input Group - Responsive */
.bcp-phone-group {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.bcp-phone-group select {
  flex-shrink: 0;
  min-width: 140px;
}

.bcp-phone-group input {
  flex-grow: 1;
}

@media (max-width: 480px) {
  .bcp-phone-group {
    flex-direction: column;
    gap: 8px;
  }
  
  .bcp-phone-group select {
    min-width: auto;
    width: 100%;
  }
  
  .bcp-phone-group input {
    width: 100%;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .bcp-booking-form {
    max-width: 650px;
    padding: 18px 14px;
  }
  
  .bcp-form-row {
    gap: 14px;
  }
  
  .bcp-form-group {
    flex: 1;
  }
  
  .bcp-form-group input,
  .bcp-form-group select {
    padding: 11px 14px;
    font-size: 14px;
  }
  
  .bcp-form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .bcp-price-display {
    padding: 15px;
    margin: 15px 0;
    max-width: 450px;
  }
  
  .bcp-price-value {
    font-size: 26px;
  }
  
  .bcp-stepper {
    gap: 12px;
  }
  
  .bcp-step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .bcp-step-label {
    font-size: 12px;
  }
  
  .bcp-calendar-dropdown {
    padding: 14px;
    max-width: 340px;
  }
  
  .bcp-calendar-nav-btn {
    width: 30px;
    height: 30px;
  }
  
  .bcp-calendar-nav-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bcp-form-actions {
    flex-direction: column;
    gap: 10px;
  }

  .bcp-btn {
    width: 100%;
  }

  .bcp-btn-primary {
    order: 1;
  }

  .bcp-btn-secondary {
    order: 2;
  }

  .bcp-summary-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bcp-summary-value {
    text-align: left;
    margin-top: 3px;
  }

  .bcp-stepper {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .bcp-form-actions {
    gap: 8px;
  }

  .bcp-stepper {
    gap: 10px;
  }
}
