:root {
  --progress-width: 0%;
  --primary-color: #004aad;
  --border-accent: #ff751f;
  --primary-light: #e8f2ff;
  --text-muted: #666;
  --border-color: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 0 20px;
  gap: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Modern Progress Bar Design */
.booking-progress {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 16px;
  margin-bottom: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.progress-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 1;
  text-align: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.step-check {
  display: none;
  font-size: 20px;
  color: white;
  font-weight: bold;
}

/* Active Step */
.progress-step.active .step-circle {
  background: var(--primary-color);
  border-color: var(--border-accent);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.3);
}

.progress-step.active .step-number {
  color: white;
}

.progress-step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

/* Completed Step */
.progress-step.completed .step-circle {
  background: var(--primary-color);
  border-color: var(--border-accent);
  animation: pulse 0.5s ease;
}

.progress-step.completed .step-number {
  display: none;
}

.progress-step.completed .step-check {
  display: block;
}

.progress-step.completed .step-label {
  color: var(--primary-color);
  font-weight: 500;
}

/* Progress Line */
.progress-line {
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
  border-radius: 2px;
}

.progress-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress-width);
  background: linear-gradient(90deg, var(--primary-color) 0%, #0066dd 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 74, 173, 0.4);
}

/* Step Label */
.step-label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.workspace-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.workspace-description {
  text-align: center;
  margin-bottom: 15px;
}

.w-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.w-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Workspace Navigation */
.workspace-navigation {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0 40px 0;
  flex-wrap: wrap;
}

.workspace-nav-item {
  position: relative;
  width: 180px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
}

.workspace-nav-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
}

.workspace-nav-item.active {
  border-color: var(--border-accent);
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.3);
}

.workspace-nav-thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
}

.workspace-nav-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.workspace-nav-item:hover .workspace-nav-thumbnail img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.workspace-nav-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.3s ease;
}

.workspace-nav-item:hover .workspace-nav-label {
  background: linear-gradient(to top, rgba(0, 74, 173, 0.9), transparent);
}

.workspace-nav-item.active .workspace-nav-label {
  background: linear-gradient(to top, rgba(0, 74, 173, 0.95), transparent);
}

.workspace-name {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.workspace-location {
  font-family: "Segoe UI Semilight", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

/* Workspace Content */
.workspace-content {
  display: none;
}

.workspace-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.workspace-details {
  margin-bottom: 20px;
}

.workspace-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #333;
  margin: 0 0 8px 0;
}

.workspace-address {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0;
}

.workspace-section h2 {
  font-family: "Segoe UI Semilight", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  color: black;
  font-weight: 600;
}
.workspace-section p {
  font-family: Tahoma, "Segoe UI Semilight", Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: black;
  font-weight: 400;
}
.workspace-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0px;
  column-gap: 10px;
  height: 240px;
  width: 100%;
  margin-bottom: 250px;
}

.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  height: 100%;
  min-height: 0;
}

.img-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.wp-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wp-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wp-3,
.wp-4 {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
}

/* Workspace Carousel - Hidden on desktop */
.workspace-carousel {
  display: none;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  cursor: grab;
  user-select: none;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  min-width: 100%;
  height: 300px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #333;
  width: 24px;
  border-radius: 4px;
}

.booking-plan-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.booking-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.booking-date-checkout {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.booking-selection {
  width: 100%;
  overflow: visible;
}

.booking-sec-title {
  font-family: "Segoe UI", Geneva, Verdana, sans-serif;
  font-size: 20px;
  color: black;
  font-weight: 500;
  margin-bottom: 20px;
}

.booking-sec-type {
  font-family: "Segoe UI light", Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: black;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.booking-sec-type p {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.booking-sec-type p:hover {
  background-color: #f0f0f0;
}

.booking-sec-type p.active {
  background-color: #333;
  color: white;
}
.booking-sec-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: visible;
  max-height: none;
}

.creators-room-plans,
.meeting-room-plans,
.other-spaces-plans {
  overflow: visible;
  max-height: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.creators-room-plans::-webkit-scrollbar,
.meeting-room-plans::-webkit-scrollbar,
.other-spaces-plans::-webkit-scrollbar {
  display: none;
}

.booking-plan-card {
  display: flex;
  flex-direction: column;
  min-height: 120px;
  height: auto;
  width: 100%;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  position: relative;
  border: 2px solid #e5e7eb;
  transition:
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
}

.booking-plan-card:hover {
  border-color: #d1d5db;
}

.booking-plan-card.selected {
  background: linear-gradient(135deg, #e8f2ff 0%, #f0f7ff 100%);
  border-color: var(--border-accent);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.2);
}

.booking-plan-card.selected:hover {
  /* No shadow change on hover */
}

.booking-plan-card .selection-circle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-plan-card.selected .selection-circle {
  background: var(--primary-color);
  border-color: var(--border-accent);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 74, 173, 0.3);
  animation: checkmarkPop 0.3s ease;
}

.booking-plan-card.selected .selection-circle::after {
  content: "✓";
  color: white;
  font-size: 16px;
  font-weight: bold;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}

.booking-plan-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  background-color: rgb(187, 202, 231);
  padding: 2px;
}

.plan-title {
  font-size: 14px;
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  margin-top: 0;
  padding: 2px 0;
}

.plan-text {
  font-size: 13px;
  color: rgb(96, 96, 96);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  margin-top: 0;
  padding: 2px 0;
}

.plan-order {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
}

.plan-pricing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.select-plan-btn {
  flex: 1 1 160px;
  width: auto;
  background: white;
  color: var(--text-muted);
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.select-plan-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.select-plan-btn:hover {
  background: var(--primary-color);
  border-color: var(--border-accent);
  color: white;
}

.select-plan-btn.active {
  background: var(--primary-color);
  border-color: var(--border-accent);
  color: white;
}

.select-plan-btn:hover::before {
  left: 100%;
}

.select-plan-btn:active {
  /* No motion on active */
}

.select-plan-btn span {
  font-size: 12px;
  color: currentColor;
  opacity: 0.8;
}

.booking-date {
  flex: 0 0 auto;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  padding: 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.booking-date:hover {
  border-color: var(--border-accent);
}
.booking-date-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: black;
  font-weight: 500;
}

.booking-date-title p {
  font-size: 12px;
  color: rgb(96, 96, 96);
  margin-top: 20px;
  margin-bottom: 10px;
}

.booking-date input[type="date"] {
  width: 100%;
  max-width: 280px;
  padding: 12px 44px 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
  background: white;
}

.booking-date input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  margin-left: 8px;
}

.booking-date input[type="date"]:hover {
  border-color: var(--border-accent);
}

.booking-date input[type="date"]:focus {
  outline: none;
  border-color: var(--border-accent);
}

.booking-date input[type="date"]:invalid {
  border-color: #f44336;
}

.date-duration {
  margin-top: 15px;
  padding: 12px 16px;
  background: rgba(74, 144, 226, 0.05);
  border-radius: 8px;
  border-left: 3px solid #4a90e2;
}

.duration-label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin-right: 8px;
}

.duration-value {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #4a90e2;
  font-weight: 600;
}

.booking-checkout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  box-sizing: border-box;
  position: sticky;
  top: 120px;
}
.booking-checkout-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.selected-plans-container {
  margin-top: 15px;
}

.selected-plans-label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  color: rgb(96, 96, 96);
  font-weight: 500;
  margin-bottom: 10px;
}

#selected-plans-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selected-plan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.selected-plan-item:hover {
  background-color: #f0f1f3;
}

.plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.plan-name {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  color: #333;
  font-weight: 600;
}

.plan-price {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.plan-price small {
  font-size: 11px;
  color: #999;
}

.remove-plan-btn {
  background-color: #ff4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.remove-plan-btn:hover {
  background-color: #cc0000;
}

.selected-plan {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  color: rgb(96, 96, 96);
  font-weight: 500;
}
.checkout-details {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: black;
  font-weight: 500;
}
.checkout-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
  gap: 20px;
}
#row-2 {
  font-weight: bold;
}
.checkout-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0066dd 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.3);
}

.checkout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.checkout-btn:hover {
  /* No shadow change on hover */
}

.checkout-btn:hover::before {
  left: 100%;
}

.checkout-btn:active {
  /* No shadow change on active */
}

.checkout-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-btn.loading {
  color: transparent;
  pointer-events: none;
}

.checkout-btn.loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  animation: slideIn 0.3s ease-out;
}

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

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

.notification.hiding {
  animation: slideOut 0.3s ease-out forwards;
}

.notification.success {
  background-color: #4caf50;
  color: white;
}

.notification.error {
  background-color: #f44336;
  color: white;
}

.notification.warning {
  background-color: #ff9800;
  color: white;
}

.notification-icon {
  font-size: 20px;
}

.notification-close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.notification-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.amenities-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  color: black;
  font-weight: 500;
  margin-bottom: 20px;
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}
.amenity-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.amenity-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  background-color: rgb(187, 202, 231);
  padding: 2px;
}
.amenity-name {
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: black;
  font-weight: 500;
}
.amenity-description {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  color: rgb(96, 96, 96);
  font-weight: 400;
}

/* Medium screens */
@media (max-width: 1200px) {
  .booking-section {
    grid-template-columns: 1.5fr 1fr;
    gap: 15px;
  }

  .booking-sec-plans {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .main-content {
    padding: 80px 20px 0 20px;
  }

  /* 2x2 grid for workspace images on medium screens */
  .workspace-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    height: 500px;
    align-items: stretch;
    margin-bottom: 60px;
  }

  .img-row,
  .img-stack {
    display: contents;
  }

  .wp-1,
  .wp-2,
  .wp-3,
  .wp-4 {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: none;
    object-fit: cover;
    border-radius: 8px;
  }

  .workspace-carousel {
    display: none;
  }

  .workspace-section {
    margin-bottom: 60px;
  }

  .workspace-navigation {
    gap: 15px;
    margin: 25px 0 35px 0;
  }

  .workspace-nav-item {
    width: 160px;
    height: 120px;
  }

  .w-title {
    font-size: 28px;
  }

  .workspace-title {
    font-size: 24px;
  }

  .booking-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-sec-plans {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .booking-date,
  .booking-checkout {
    max-width: 100%;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .main-content {
    padding: 60px 10px 0 10px;
  }

  /* Mobile Progress Bar Styles */
  .booking-progress {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .progress-container {
    padding: 0 10px;
    max-width: 100%;
  }

  .progress-steps {
    gap: 0;
    flex-wrap: nowrap;
  }

  .progress-step {
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
  }

  .step-circle {
    width: 40px;
    height: 40px;
  }

  .step-number,
  .step-check {
    font-size: 16px;
  }

  .step-label {
    font-size: 11px;
    max-width: 70px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
  }

  .progress-line {
    top: 20px;
    left: 25px;
    right: 25px;
  }

  .progress-step.active .step-circle {
    transform: scale(1.05);
  }

  .progress-steps {
    gap: 0;
  }

  .step-label {
    font-size: 10px;
  }

  .workspace-section {
    margin-bottom: 40px;
  }

  .workspace-section h1 {
    font-size: 20px;
  }

  .workspace-section p {
    font-size: 14px;
  }

  .workspace-navigation {
    gap: 10px;
    margin: 20px 0 30px 0;
  }

  .workspace-nav-item {
    width: 140px;
    height: 100px;
    border-radius: 12px;
  }

  .workspace-name {
    font-size: 14px;
  }

  .workspace-location {
    font-size: 11px;
  }

  .w-title {
    font-size: 24px;
  }

  .workspace-title {
    font-size: 20px;
  }

  .workspace-address {
    font-size: 13px;
  }

  .workspace-image {
    display: none;
  }

  .workspace-carousel {
    display: block;
  }

  .carousel-slide {
    height: 350px;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-sec-title {
    font-size: 18px;
  }

  .booking-sec-type {
    flex-wrap: wrap;
    gap: 10px;
  }

  .booking-sec-type p {
    font-size: 12px;
    padding: 6px 12px;
  }

  .booking-sec-plans {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-plan-card {
    padding: 20px;
    min-height: auto;
  }

  .plan-order {
    flex-direction: column;
    gap: 10px;
  }

  .booking-date {
    width: 100%;
    max-width: none;
  }

  .booking-date input[type="date"] {
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .booking-date .date-duration {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .booking-checkout {
    width: 100%;
    max-width: none;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .amenity-item {
    gap: 15px;
  }

  /* Mobile notification styles */
  .notification {
    right: 10px;
    left: 10px;
    min-width: auto;
    top: 80px;
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .main-content {
    padding: 60px 8px 0 8px;
  }

  /* Extra Small Mobile Progress Bar */
  .booking-progress {
    padding: 20px 10px;
  }

  .progress-container {
    padding: 0 5px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
  }

  .step-number,
  .step-check {
    font-size: 14px;
  }

  .step-label {
    font-size: 10px;
    max-width: 60px;
  }

  .progress-line {
    top: 18px;
    left: 20px;
    right: 20px;
    height: 3px;
  }

  .booking-sec-plans {
    gap: 12px;
  }

  .booking-plan-card {
    padding: 16px;
  }

  .plan-img {
    width: 50px;
    height: 50px;
  }

  .plan-title {
    font-size: 14px;
  }

  .plan-text {
    font-size: 11px;
  }

  .select-plan-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  .booking-sec-type {
    gap: 8px;
  }

  .booking-sec-type p {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* Booking Duration Display */
.booking-duration {
  font-size: 13px;
  color: #4a90e2;
  margin-top: 8px;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(74, 144, 226, 0.05);
  border-radius: 6px;
  display: inline-block;
}

/* Confirmation Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 40px 24px;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-container {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.modal-header {
  padding: 30px 30px 20px 30px;
  border-bottom: 2px solid #f0f0f0;
  text-align: center;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.modal-header h2 {
  font-size: 24px;
  margin: 0 0 8px 0;
  color: #333;
}

.modal-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.modal-body {
  padding: 30px;
}

.modal-section {
  margin-bottom: 25px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-location {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.modal-location svg {
  width: 20px;
  height: 20px;
  fill: #4a90e2;
  flex-shrink: 0;
}

.modal-location span {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.modal-plans-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
}

.modal-plan-item svg {
  width: 18px;
  height: 18px;
  fill: #4caf50;
  flex-shrink: 0;
}

.modal-dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.modal-date-item {
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.modal-date-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  font-weight: 500;
}

.modal-date-value {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

.modal-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border-radius: 12px;
}

.modal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.modal-price-label {
  color: #666;
}

.modal-price-value {
  color: #333;
  font-weight: 600;
}

.modal-price-row.total {
  padding-top: 12px;
  border-top: 2px solid rgba(102, 126, 234, 0.2);
  font-size: 18px;
}

.modal-price-row.total .modal-price-label {
  color: #333;
  font-weight: 600;
}

.modal-price-row.total .modal-price-value {
  color: #667eea;
  font-size: 22px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.modal-form-group input {
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.modal-form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-form-group input::placeholder {
  color: #aaa;
}

.modal-form-group input:invalid {
  border-color: #e0e0e0;
}

.modal-form-group input.error {
  border-color: #f44336;
}

.modal-footer {
  padding: 20px 30px 30px 30px;
  display: flex;
  gap: 15px;
}

.modal-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.modal-btn-cancel {
  background: white;
  color: #666;
  border: 2px solid #ddd;
}

.modal-btn-cancel:hover {
  background: #f8f9fa;
  border-color: #ccc;
}

.modal-btn-confirm {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modal-btn-confirm:hover {
  /* No motion or shadow on hover */
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 20px 12px;
  }

  .modal-container {
    max-width: 100%;
    border-radius: 12px;
    max-height: calc(100vh - 40px);
  }

  .modal-header {
    padding: 25px 20px 15px 20px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-icon {
    width: 50px;
    height: 50px;
  }

  .modal-icon svg {
    width: 28px;
    height: 28px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-section {
    margin-bottom: 20px;
  }

  .modal-dates {
    grid-template-columns: 1fr;
  }

  .modal-footer {
    padding: 15px 20px 25px 20px;
    flex-direction: column;
  }

  .modal-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .modal-price-row.total {
    font-size: 16px;
  }

  .modal-price-row.total .modal-price-value {
    font-size: 20px;
  }
}
