﻿.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}
 
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(20, 79, 80, 0.7) 100%);
}
 
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
 
.page-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
 
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-breadcrumb li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.page-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: var(--gold-on-dark);
}
.page-breadcrumb li.active {
  color: var(--gold-on-dark);
}
 
.page-breadcrumb-sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--gold-on-dark);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}
 
@media (max-width: 991.98px) {
  .page-hero {
    height: 320px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .page-hero {
    height: 280px;
    padding-bottom: 40px;
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .page-breadcrumb li {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .page-breadcrumb-sep {
    margin: 0 10px;
  }
}
:root {
  --gold: #CCA352;
  --green: #144f50;
  --green-hover: #668b8d;
  --beige: #faf2ea;
  --black: #0A0A0A;
  --text-muted: rgba(10,10,10,0.65);
}

.booking-form-section {
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--beige);
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

.bf-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0;
}

.bf-required {
  color: var(--gold);
  margin-left: 2px;
}

.bf-input,
.bf-select,
.bf-textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(20, 79, 80, 0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.bf-input::placeholder,
.bf-select::placeholder,
.bf-textarea::placeholder {
  color: var(--text-muted);
}
.bf-input:focus,
.bf-select:focus,
.bf-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(204, 163, 82, 0.12);
}
.bf-input:hover:not(:focus),
.bf-select:hover:not(:focus),
.bf-textarea:hover:not(:focus) {
  border-color: rgba(20, 79, 80, 0.4);
}

.bf-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.bf-input--date {
  cursor: pointer;
}
.bf-input--date::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  cursor: pointer;
}

.bf-input-icon-wrapper {
  position: relative;
}

.bf-input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 0.85rem;
}

.bf-select-wrapper {
  position: relative;
}

.bf-select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.bf-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.bf-select-loader {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  display: none;
}
.bf-select-loader.is-loading {
  display: block;
}

.bf-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bf-radio-card {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}
.bf-radio-card input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bf-radio-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(20, 79, 80, 0.2);
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  font-size: 0.875rem;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.bf-radio-inner i {
  color: rgba(20, 79, 80, 0.4);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.bf-radio-card input:checked + .bf-radio-inner {
  border-color: var(--gold);
  background: rgba(204, 163, 82, 0.06);
  color: var(--green);
}
.bf-radio-card input:checked + .bf-radio-inner i {
  color: var(--gold);
}

.bf-radio-card:hover .bf-radio-inner {
  border-color: rgba(20, 79, 80, 0.4);
}

.bf-fade-in {
  animation: bfFadeSlideIn 0.35s ease both;
}

@keyframes bfFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-gold-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-gold-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn-gold-submit:hover {
  background: #b8893d;
  box-shadow: 0 8px 24px rgba(204, 163, 82, 0.35);
  transform: translateY(-1px);
}
.btn-gold-submit:hover::before {
  opacity: 1;
}
.btn-gold-submit:active {
  transform: translateY(0);
}
.btn-gold-submit .bf-btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.btn-gold-submit:hover .bf-btn-icon {
  transform: translateX(4px);
}

.bf-privacy-note {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bf-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(204, 163, 82, 0.3);
  transition: border-color 0.2s ease;
}
.bf-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.bf-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  margin-top: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  font-size: 0.875rem;
}
.bf-message i {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.bf-message--success {
  background: rgba(20, 79, 80, 0.08);
  border-left: 3px solid var(--green);
  color: var(--green);
}
.bf-message--error {
  background: rgba(192, 57, 43, 0.06);
  border-left: 3px solid #c0392b;
  color: #c0392b;
}

.booking-form.was-validated .bf-input:invalid,
.booking-form.was-validated .bf-select:invalid {
  border-color: #c0392b;
}

.booking-form.was-validated .bf-input:valid,
.booking-form.was-validated .bf-select:valid {
  border-color: rgba(20, 79, 80, 0.4);
}

.invalid-feedback {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.was-validated .bf-input:invalid ~ .invalid-feedback,
.was-validated .bf-select:invalid ~ .invalid-feedback,
.was-validated .bf-input-icon-wrapper .bf-input:invalid ~ .invalid-feedback,
.was-validated .bf-select-wrapper .bf-select:invalid ~ .invalid-feedback {
  display: block;
}