/* ============================================
   Crooked Creek Properties — Website Styles
   Design: Warm, nature-forward, upscale cottage
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-dark: #2C3E2D;
  --color-green: #4A6741;
  --color-green-light: #5C7A52;
  --color-gold: #8B6914;
  --color-gold-light: #C49B2A;
  --color-cream: #F8F5EF;
  --color-warm-white: #FDFCF9;
  --color-tan: #D4C5A9;
  --color-tan-light: #E8DFD0;
  --color-text: #2D2D2D;
  --color-text-light: #5A5A5A;
  --color-white: #FFFFFF;

  --font-heading: 'Lora', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Skip Link (accessibility) --- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-dark); color: var(--color-white);
  padding: 0.75rem 1.5rem; border-radius: 0 0 6px 6px;
  font-size: 0.9rem; font-weight: 600; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0; outline: 3px solid var(--color-gold); outline-offset: 2px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-gold); }

/* --- Focus indicators (accessibility) --- */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-gold); outline-offset: 2px;
}
.btn:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-dark);
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-tan-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--color-text);
  letter-spacing: 0.02em; text-transform: uppercase; padding: 0.25rem 0;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-green); border-bottom-color: var(--color-green);
}
.nav-links .btn-nav,
.nav-links .btn-nav:hover,
.nav-links .btn-nav:focus-visible {
  color: var(--color-white); border-bottom-color: transparent;
}
.nav-links .btn-nav {
  background: var(--color-green);
  padding: 0.6rem 1.25rem; border-radius: 6px; border: none;
  font-weight: 600; letter-spacing: 0.03em;
}
.nav-links .btn-nav:hover {
  background: var(--color-green-light);
}

/* Mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-text);
  margin: 5px 0; transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
  position: relative; height: 85vh; min-height: 550px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,62,45,0.75) 0%,
    rgba(44,62,45,0.45) 50%,
    rgba(44,62,45,0.3) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--color-white); padding: 2rem;
}
.hero-content--left {
  text-align: left;
  max-width: var(--max-width); width: 100%;
  padding: 2rem 1.5rem; margin: 0 auto;
}
.hero-label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 600; opacity: 0.9; margin-bottom: 1rem;
  color: var(--color-gold-light);
}
.hero-heading {
  font-family: var(--font-heading); font-size: 3.6rem; font-weight: 700;
  color: var(--color-white); line-height: 1.12; margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.25);
  letter-spacing: -0.01em; max-width: 600px;
}
.hero-proof {
  font-size: 0.95rem; opacity: 0.9; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
}
.hero-proof-stars { color: var(--color-gold-light); font-weight: 600; }
.hero-proof-sep { opacity: 0.5; margin: 0 0.25rem; }
.hero-proof-link {
  color: var(--color-white); text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 2px;
}
.hero-proof-link:hover { color: var(--color-gold-light); text-decoration-color: var(--color-gold-light); }
.hero-sub {
  font-size: 1.05rem; opacity: 0.85; margin-bottom: 2rem;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-logo { max-width: 380px; margin: 0 auto 1.5rem; mix-blend-mode: screen; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-dark); padding: 1.25rem 0;
}
.trust-items {
  display: flex; justify-content: space-between; gap: 1.5rem;
  max-width: var(--max-width); margin: 0 auto;
}
.trust-item {
  text-align: center; flex: 1;
}
.trust-item strong {
  display: block; color: var(--color-white); font-size: 0.9rem;
  font-weight: 600; margin-bottom: 0.15rem;
}
.trust-item span {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em;
  text-transform: uppercase; transition: all 0.25s; cursor: pointer;
  border: 2px solid transparent; text-align: center;
}
.btn-primary {
  background: var(--color-gold); color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light); border-color: var(--color-gold-light);
  color: var(--color-white);
}
.btn-outline {
  background: transparent; color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15); border-color: var(--color-white);
  color: var(--color-white);
}
.btn-green {
  background: var(--color-green); color: var(--color-white);
  border-color: var(--color-green);
}
.btn-green:hover {
  background: var(--color-green-light); border-color: var(--color-green-light);
  color: var(--color-white);
}
.btn-secondary {
  background: transparent; color: var(--color-green);
  border-color: var(--color-green); font-size: 0.88rem;
  padding: 0.7rem 1.6rem;
}
.btn-secondary:hover {
  background: var(--color-green); color: var(--color-white);
}

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-cream { background: var(--color-cream); }
.section-dark { background: var(--color-dark); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-header {
  text-align: center; max-width: 650px; margin: 0 auto 3rem;
}
.section-header p {
  color: var(--color-text-light); font-size: 1.05rem; margin-top: 0.75rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.section-label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-gold); font-weight: 600; margin-bottom: 0.5rem;
}

/* --- Features Grid --- */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature-card {
  text-align: center; padding: 2rem 1.5rem;
}
.feature-icon {
  font-size: 2.25rem; margin-bottom: 1rem; display: block;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.6; }

/* --- Image + Text Rows --- */
.split-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 5rem;
}
.split-row:last-child { margin-bottom: 0; }
.split-row.reverse .split-image { order: 2; }
.split-row.reverse .split-text { order: 1; }
.split-image {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.split-image img {
  width: 100%; height: 400px; object-fit: cover;
}
.split-text h2 { margin-bottom: 1rem; }
.split-text p { color: var(--color-text-light); margin-bottom: 1rem; font-size: 1.02rem; }
.split-text .btn { margin-top: 0.5rem; }

/* --- Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.gallery-item {
  border-radius: 8px; overflow: hidden; cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* --- Reviews --- */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.review-card {
  background: var(--color-white); padding: 2rem;
  border-radius: 10px; border: 1px solid var(--color-tan-light);
}
.review-stars { color: var(--color-gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.95rem; color: var(--color-text-light);
  line-height: 1.65; font-style: italic; margin-bottom: 1rem;
}
.review-author { font-weight: 600; font-size: 0.85rem; color: var(--color-text); }
.review-date { font-size: 0.8rem; color: var(--color-text-light); }
.reviews-badge {
  text-align: center; margin-bottom: 2rem;
}
.reviews-badge .rating {
  font-family: var(--font-heading); font-size: 3rem;
  font-weight: 700; color: var(--color-dark);
}
.reviews-badge .stars { font-size: 1.5rem; color: var(--color-gold); }
.reviews-badge .count { font-size: 0.95rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* --- Platform Badges --- */
.reviews-platforms {
  display: flex; justify-content: center; gap: 3rem;
  margin-bottom: 2.5rem;
}
.platform-badge { text-align: center; }
.platform-rating {
  font-family: var(--font-heading); font-size: 2.75rem;
  font-weight: 700; color: var(--color-dark); line-height: 1;
}
.platform-rating span {
  font-size: 1.1rem; font-weight: 400; color: var(--color-text-light);
}
.platform-stars {
  font-size: 1.25rem; color: var(--color-gold); margin: 0.25rem 0;
}
.platform-source {
  font-size: 0.85rem; color: var(--color-text-light); font-weight: 500;
}

/* --- Amenities List --- */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.amenity-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; background: var(--color-white);
  border-radius: 8px; border: 1px solid var(--color-tan-light);
  font-size: 0.92rem;
}
.amenity-icon { font-size: 1.25rem; flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.amenity-icon svg { width: 20px; height: 20px; stroke: var(--color-green); stroke-width: 1.75; fill: none; }

/* --- Activities / Things to Do --- */
.activity-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.activity-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: var(--color-white);
}
.activity-card-img {
  height: 220px; overflow: hidden;
}
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-card-body { padding: 1.5rem; }
.activity-card-body h3 { margin-bottom: 0.5rem; }
.activity-card-body p { font-size: 0.92rem; color: var(--color-text-light); }

/* --- Location Info --- */
.location-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.location-map {
  border-radius: 12px; overflow: hidden; height: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.location-map iframe { width: 100%; height: 100%; border: none; }
.distance-list { list-style: none; }
.distance-list li {
  display: flex; justify-content: space-between;
  padding: 0.85rem 0; border-bottom: 1px solid var(--color-tan-light);
  font-size: 0.95rem;
}
.distance-list li:last-child { border-bottom: none; }
.distance-list .place { font-weight: 500; }
.distance-list .dist { color: var(--color-text-light); }

/* --- Book Now / CTA Banner --- */
.cta-banner {
  background: var(--color-dark); padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }

/* --- Pricing Table --- */
.pricing-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  max-width: 700px; margin: 0 auto;
}
.pricing-card {
  background: var(--color-white); border-radius: 12px;
  padding: 2.5rem 2rem; text-align: center;
  border: 1px solid var(--color-tan-light);
}
.pricing-card.featured {
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(139,105,20,0.15);
}
.pricing-season {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-gold); font-weight: 600; margin-bottom: 0.75rem;
}
.pricing-rate {
  font-family: var(--font-heading); font-size: 2.75rem;
  font-weight: 700; color: var(--color-dark);
}
.pricing-rate span { font-size: 1rem; font-weight: 400; color: var(--color-text-light); }
.pricing-period {
  font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.pricing-details { list-style: none; text-align: left; }
.pricing-details li {
  padding: 0.4rem 0; font-size: 0.9rem; color: var(--color-text-light);
}

/* --- Footer --- */
.footer {
  background: var(--color-dark); color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1.25rem; mix-blend-mode: screen; }
.footer-brand { padding-top: 0.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
  color: var(--color-white); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem; font-family: var(--font-body);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--color-white); }

/* --- Lightbox --- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer; padding: 0.5rem;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  font-size: 1.5rem; cursor: pointer; padding: 1rem 0.75rem;
  border-radius: 6px; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.25); }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible {
  outline: 3px solid rgba(255,255,255,0.8); outline-offset: 2px; opacity: 1;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* --- Page Headers (interior pages) --- */
.page-header {
  padding: 8rem 0 4rem; text-align: center;
  background: var(--color-dark); color: var(--color-white);
  margin-top: var(--nav-height);
  position: relative; overflow: hidden;
}
.page-header--img {
  background-size: cover; background-position: center;
  padding: 9rem 0 5rem;
}
.page-header--img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44,62,45,0.82) 0%,
    rgba(44,62,45,0.7) 60%,
    rgba(44,62,45,0.85) 100%
  );
  z-index: 1;
}
.page-header--img .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--color-white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid, .reviews-grid, .activity-cards { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { height: 75vh; min-height: 480px; }
  .hero-logo { max-width: 280px; }
  .hero-heading { font-size: 2.4rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-content--left { text-align: center; }
  .hero-proof { justify-content: center; }
  .hero-cta { justify-content: center; }
  .trust-items { flex-wrap: wrap; gap: 1rem; }
  .trust-item { flex: 0 0 calc(50% - 0.5rem); }
  .reviews-platforms { gap: 2rem; }
  .platform-rating { font-size: 2.25rem; }
  .section { padding: 3.5rem 0; }

  /* Mobile nav */
  .nav-links {
    display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--color-white); flex-direction: column; gap: 0;
    padding: 1rem 0; border-bottom: 1px solid var(--color-tan-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 1.5rem; border-bottom: none; }
  .nav-links .btn-nav { margin: 0.5rem 1.5rem; text-align: center; }
  .nav-toggle { display: block; }

  .split-row { grid-template-columns: 1fr; gap: 2rem; }
  .split-row.reverse .split-image { order: 0; }
  .split-row.reverse .split-text { order: 0; }
  .features-grid, .reviews-grid, .activity-cards { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .pricing-cards { grid-template-columns: 1fr; }
  .location-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ============================================
   Booking Page Styles
   ============================================ */

/* --- Layout --- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.booking-main { min-width: 0; }

/* --- Steps --- */
.booking-step {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-tan-light);
}

.booking-step:last-child { border-bottom: none; }

.booking-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-step-header h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.booking-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.booking-step-desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --- Calendar Overrides --- */
#availability-calendar {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-tan-light);
  background: var(--color-white);
}

.fc {
  font-family: var(--font-body) !important;
}

.fc .fc-toolbar-title {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--color-dark);
}

.fc .fc-button-primary {
  background: var(--color-green) !important;
  border-color: var(--color-green) !important;
  font-size: 0.85rem;
  border-radius: 6px !important;
  padding: 0.4rem 0.8rem !important;
}

.fc .fc-button-primary:hover {
  background: var(--color-green-light) !important;
  border-color: var(--color-green-light) !important;
}

.fc .fc-button-primary:focus {
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.3) !important;
}

.fc .fc-daygrid-day.fc-day-today {
  background: rgba(196, 155, 42, 0.08) !important;
}

.fc .fc-highlight {
  background: rgba(74, 103, 65, 0.15) !important;
}

.fc .fc-day-blocked {
  background: var(--color-cream) !important;
  cursor: not-allowed !important;
}

.fc .fc-day-blocked .fc-daygrid-day-number {
  color: #bbb !important;
  text-decoration: line-through;
}

/* Custom day cell with rate */
.fc .fc-daygrid-day-frame {
  min-height: 60px !important;
  cursor: pointer;
}

.fc-day-cell-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 2px;
  gap: 1px;
}

.fc-day-number {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.fc-day-rate {
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.fc-day-rate-peak {
  color: var(--color-gold);
  font-weight: 600;
}

.fc .fc-col-header-cell-cushion {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Disabled / past / blocked day cells */
.fc .fc-day-disabled .fc-day-number,
.fc .fc-day-blocked .fc-day-number {
  color: #ccc !important;
}

.fc .fc-day-disabled .fc-day-rate,
.fc .fc-day-blocked .fc-day-rate {
  display: none;
}

.fc .fc-day-disabled,
.fc .fc-day-blocked {
  cursor: not-allowed !important;
  background: var(--color-cream) !important;
}

/* Click-to-click selection highlighting */
.fc .fc-day-selected-checkin {
  background: var(--color-green) !important;
  border-radius: 8px 0 0 8px;
}

.fc .fc-day-selected-checkin .fc-day-number {
  color: var(--color-white) !important;
  font-weight: 700;
}

.fc .fc-day-selected-checkin .fc-day-rate {
  color: rgba(255,255,255,0.85) !important;
}

.fc .fc-day-selected-checkout {
  background: var(--color-green) !important;
  border-radius: 0 8px 8px 0;
}

.fc .fc-day-selected-checkout .fc-day-number {
  color: var(--color-white) !important;
  font-weight: 700;
}

.fc .fc-day-selected-checkout .fc-day-rate {
  color: rgba(255,255,255,0.85) !important;
}

.fc .fc-day-in-range {
  background: rgba(74, 103, 65, 0.12) !important;
}

.fc .fc-day-in-range .fc-day-rate {
  color: var(--color-green);
}

/* Selection hint */
.selection-hint {
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  background: rgba(74, 103, 65, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--color-green);
}

/* --- Date Summary --- */
.date-selection-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--color-cream);
  border-radius: 10px;
  flex-wrap: wrap;
}

.date-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.date-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  font-weight: 600;
}

.date-value {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.date-arrow {
  font-size: 1.25rem;
  color: var(--color-text-light);
}

.nights-pill {
  background: var(--color-green);
  color: var(--color-white);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-left: auto;
}

.nights-pill .date-value {
  color: var(--color-white);
  font-size: 0.85rem;
}

/* --- Form Fields --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

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

.form-input,
.form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-tan);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.15);
}

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

.form-hint {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: 0.15rem;
}

.form-optional {
  font-weight: 400;
  color: var(--color-text-light);
}

.required {
  color: #c0392b;
}

.form-error {
  color: #c0392b;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* --- Agreements --- */
.form-agreements {
  margin-top: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-green);
  flex-shrink: 0;
}

.link-btn {
  background: none;
  border: none;
  color: var(--color-green);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

.link-btn:hover {
  color: var(--color-gold);
}

.policy-detail {
  margin-left: 1.65rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-cream);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Price Card (Sidebar) --- */
.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-tan-light);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.price-card-header h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.price-card-note {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.price-card-body {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-tan-light);
}

.price-line-items {
  margin-bottom: 1rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.price-line.discount {
  color: var(--color-green);
}

.price-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-tan-light);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.price-savings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Book Button --- */
.btn-book {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 1rem;
  min-height: 52px;
  max-width: none;
}

.btn-book:disabled {
  background: var(--color-tan);
  border-color: var(--color-tan);
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-book .lock-icon {
  flex-shrink: 0;
}

/* --- Trust Signals --- */
.price-card-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-tan-light);
}

.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.trust-signal svg {
  flex-shrink: 0;
  stroke: var(--color-green);
}

/* --- Platform Links --- */
.platform-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-tan-light);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.platform-link:hover {
  border-color: var(--color-green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  color: var(--color-green);
}

.platform-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
}

.platform-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* --- Cancel Banner --- */
.cancel-banner {
  background: #fff3e0;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: #e65100;
  border-bottom: 1px solid #ffe0b2;
}

/* --- Booking Responsive --- */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr 340px;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    order: -1;
  }

  .price-card {
    position: sticky;
    top: var(--nav-height);
    z-index: 10;
    border-radius: 0 0 14px 14px;
    margin: 0 -1.5rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

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

  .date-selection-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .date-arrow { display: none; }

  .nights-pill { margin-left: 0; }

  .platform-options {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}
