@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --hotel-gold: #c5a059;
  --hotel-navy: #152849;
  --hotel-white: #ffffff;
  --hotel-bg: #fdfcf9;
  --hotel-text: #2d2d2d;
  --hotel-muted: #666666;
  --hotel-border: #e8e1d5;
  --hotel-card-bg: #ffffff;
  --marketing-primary: #c5a059;
  --marketing-navy: #152849;
  --marketing-bg-alt: #f8f9fa;
  --marketing-success: #1e7e34;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--hotel-bg);
  color: var(--hotel-text);
  margin: 0;
  padding: 0;
}

h1, h2, h3, .hotel-serif {
  font-family: 'Playfair Display', serif;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; max-width: 600px; opacity: 0.9; }

.booking-search-bar {
  background: var(--hotel-white);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--hotel-border);
}

.section-title {
  text-align: center;
  margin: 60px 0 40px;
}

.section-title h2 { font-size: 2.5rem; color: var(--hotel-navy); }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--hotel-gold);
  margin: 15px auto;
}

/* Room Cards */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.room-card {
  background: var(--hotel-card-bg);
  border: 1px solid var(--hotel-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.room-card-content {
  padding: 25px;
}

.room-card-title {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--hotel-navy);
}

.room-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--hotel-muted);
}

.room-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hotel-gold);
  margin-top: 15px;
}

/* Quote Table */
.quote-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
}

.quote-table th {
  background: var(--hotel-navy);
  color: white;
  text-align: left;
  padding: 15px;
  font-weight: 400;
}

.quote-table td {
  padding: 15px;
  border-bottom: 1px solid var(--hotel-border);
}

.quote-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hotel-navy);
  text-align: right;
  padding-top: 20px;
}

/* Form Styles */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--hotel-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--hotel-border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--hotel-gold);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

.btn-hotel {
  display: inline-block;
  padding: 14px 28px;
  background: var(--hotel-navy);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-hotel:hover { background: #0e1c33; }
.btn-hotel.gold { background: var(--hotel-gold); }
.btn-hotel.gold:hover { background: #b08d4b; }

.output {
  margin-top: 20px;
  animation: fadeIn 0.5s ease;
}

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

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-badge.available { background: #e6f4ea; color: #1e7e34; }
.status-badge.unavailable { background: #fdeaea; color: #d93025; }

.loading {
  text-align: center;
  padding: 40px;
  color: var(--hotel-gold);
  font-style: italic;
}

.loading::after {
  content: "...";
  animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
  0%, 20% { content: "."; }
  40% { content: ".."; }
  60% { content: "..."; }
  80%, 100% { content: ""; }
}

.alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.alert.danger { background: #fdeaea; color: #d93025; border: 1px solid #fad2cf; }
.alert.success { background: #e6f4ea; color: #1e7e34; border: 1px solid #c3e6cb; }

/* Booking Step Display */
.step-container { display: none; }
.step-container.active { display: block; }

.steps-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.step-item.active { opacity: 1; }
.step-item.done { opacity: 0.8; color: var(--hotel-gold); }

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }

/* Pricing Bundles (B2B Marketing) */
.marketing-section {
  margin-top: 120px;
  border-top: 2px solid var(--hotel-border);
  padding-top: 80px;
  padding-bottom: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 60px 0;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--hotel-border);
  background: white;
  border-radius: 20px;
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(21, 40, 73, 0.12);
  border-color: var(--hotel-gold);
}

.pricing-card.hero {
  border: none;
  background: linear-gradient(145deg, #ffffff 0%, #fffdf9 100%);
  box-shadow: 0 15px 45px rgba(197, 160, 89, 0.18);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--hotel-gold);
}

.pricing-card.hero:hover {
  transform: scale(1.03) translateY(-12px);
  box-shadow: 0 40px 80px rgba(197, 160, 89, 0.25);
}

.hero-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  transform: rotate(45deg);
  background: var(--hotel-gold);
  color: white;
  padding: 8px 40px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 150px;
  text-align: center;
}

.pricing-card h3 {
  color: var(--hotel-navy);
  margin: 0 0 15px 0;
  font-size: 2.4rem;
  text-align: left;
  letter-spacing: -0.5px;
}

.package-tagline {
  color: var(--hotel-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 12px;
  display: block;
}

.package-tagline.centered {
  text-align: center;
  display: block;
}

.package-target {
  color: var(--hotel-muted);
  font-size: 1rem;
  text-align: left;
  margin-bottom: 35px;
  min-height: 3.5em;
  line-height: 1.6;
}

.price-container {
  text-align: left;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.price {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--hotel-navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price small {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--hotel-muted);
}

.price-sub {
  display: block;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hotel-navy);
}

.price-period {
  font-size: 0.95rem;
  color: var(--hotel-muted);
  margin-top: 8px;
  font-weight: 500;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
  flex-grow: 1;
}

.features li {
  margin-bottom: 20px;
  padding-left: 35px;
  position: relative;
  color: var(--hotel-text);
  font-size: 1.05rem;
  line-height: 1.5;
}

.features li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 2px;
}

.features li.bonus {
  color: var(--marketing-success);
  font-weight: 700;
}

.features li.bonus::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

.pricing-footer {
  margin-top: auto;
  text-align: left;
}

.btn-pricing {
  width: 100%;
  padding: 20px !important;
  font-size: 1.1rem !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
  transition: all 0.3s ease !important;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.setup-fee {
  font-size: 0.9rem;
  color: var(--hotel-muted);
  margin-top: 25px;
  line-height: 1.6;
}

.setup-fee strong { color: var(--hotel-navy); }
.setup-fee p { margin: 5px 0 0; font-style: italic; }

.demo-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--hotel-navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--hotel-gold);
  transition: all 0.3s;
}

.demo-link:hover {
  color: var(--hotel-gold);
  letter-spacing: 2px;
}

.banner {
  background: linear-gradient(135deg, var(--hotel-navy) 0%, #1e3a8a 100%);
  color: white;
  padding: 45px 50px;
  border-radius: 20px;
  margin: 60px 0;
  text-align: left;
  box-shadow: 0 20px 40px rgba(21, 40, 73, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
}

.banner-content strong {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.banner-content span {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.5;
}

.btn-banner {
  background: var(--hotel-gold);
  color: white;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  white-space: nowrap;
}

.btn-banner:hover {
  background: #b08d4b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.45);
  color: white;
}

.banner-alt {
  background: var(--marketing-bg-alt);
  color: var(--hotel-navy);
  box-shadow: none;
  border: 1px solid var(--hotel-border);
}

.banner-alt .banner-content strong {
  color: var(--hotel-navy);
}

.banner-alt .banner-content span {
  color: var(--hotel-muted);
}

.banner-promo {
  font-weight: 700;
  color: var(--marketing-success);
  background: white;
  padding: 25px 35px;
  border-radius: 15px;
  border: 2px dashed var(--marketing-success);
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(30, 126, 52, 0.05);
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.trust-card {
  padding: 45px;
  background: #fdfcf9;
  border-left: 4px solid var(--hotel-gold);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: all 0.3s;
}

.trust-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trust-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--hotel-navy);
  text-align: left;
}

.trust-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--hotel-text);
  opacity: 0.9;
  text-align: left;
  font-style: normal;
}

@media (max-width: 992px) {
  .pricing-card.hero {
    transform: scale(1);
    order: -1;
  }
  .pricing-card.hero:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 768px) {
  .pricing-grid { gap: 30px; }
  .banner { flex-direction: column; text-align: center; }
  .trust-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .form-grid.grid-4, .form-grid.grid-5, .form-grid.grid-6 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .form-grid.grid-4, .form-grid.grid-5, .form-grid.grid-6 { grid-template-columns: 1fr; }
  .steps-nav { gap: 15px; }
}
.app-footer {
  margin-top: 100px;
  padding: 80px 0;
  background: var(--hotel-navy);
  color: white;
  text-align: center;
}

.footer-brand {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: white;
}

.footer-address {
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.footer-links {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  opacity: 0.6;
  font-size: 0.85rem;
  display: block;
  margin-top: 40px;
}