/* Book Your Shoot Page */
.book-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.book-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 20px var(--shadow);
  flex-wrap: wrap;
  gap: 1rem;
}

.book-nav .brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--rose-gold);
}

.book-main {
  flex: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.book-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.book-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow);
  border-left: 4px solid var(--rose-gold);
}

.step-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-pay {
  display: inline-block;
  background: var(--rose-gold);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-pay:hover {
  background: var(--blush-dark);
}

.qr-payment {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  margin: 1rem 0;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid rgba(139, 115, 85, 0.1);
}

.qr-payment img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Book Form */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.required {
  color: var(--rose-gold);
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(139, 115, 85, 0.2);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose-gold);
}

.form-group small {
  font-size: 0.8rem;
  color: var(--soft-brown);
}

.btn-send {
  align-self: flex-start;
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-send:hover {
  background: var(--rose-gold);
}

.book-footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background: var(--warm-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.book-footer a {
  color: var(--rose-gold);
  text-decoration: none;
  font-weight: 500;
}

.book-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .book-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .book-main {
    padding: 2rem 1rem;
  }
  
  .book-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .step-card h2 {
    font-size: 1.25rem;
  }
  
  .qr-payment {
    padding: 1rem;
  }
  
  .qr-payment img {
    max-width: 100%;
    width: 280px;
    height: auto;
  }
}

@media (max-width: 400px) {
  .book-title {
    font-size: 1.5rem;
  }
  
  .qr-payment img {
    width: 100%;
  }
}
