/* ----- reset & base : dark, elegant, luxurious ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ----- Color System: Vibrant Teal Background ----- */
    :root {
      /* Primary: Vibrant Teal Gradient (#1F83A4 to #14667F) */
      --primary: #1F83A4;
      --primary-light: #2E9BB8;
      --primary-lighter: #4DB3CD;
      --primary-dark: #186A87;
      --primary-darker: #14667F;
      --primary-fade: rgba(31, 131, 164, 0.08);
      --primary-fade-medium: rgba(31, 131, 164, 0.15);
      --primary-fade-strong: rgba(31, 131, 164, 0.25);
      
      /* Primary Gradient: Vibrant Teal Gradient */
      --primary-gradient: linear-gradient(135deg, #1F83A4 0%, #14667F 100%);
      --primary-gradient-reverse: linear-gradient(135deg, #14667F 0%, #1F83A4 100%);

      /* Logo Gradient: Blend of Mauve and Teal */
      --logo-gradient: linear-gradient(135deg, #C59F91 0%, #1F83A4 100%);
      --logo-gradient-reverse: linear-gradient(135deg, #1F83A4 0%, #C59F91 100%);

      /* Secondary: Mauve (#C59F91) */
      --secondary: #C59F91;
      --secondary-light: #D4B0A1;
      --secondary-lighter: #E3C1B1;
      --secondary-dark: #B08D81;
      --secondary-darker: #9B7B71;
      --secondary-fade: rgba(197, 159, 145, 0.08);
      --secondary-fade-medium: rgba(197, 159, 145, 0.15);
      --secondary-fade-strong: rgba(197, 159, 145, 0.25);

      /* Neutrals */
      --bg-primary: #1F83A4;
      --bg-secondary: #186A87;
      --bg-tertiary: #12556B;
      --bg-warm: #F5F0E8;
      --bg-card: rgba(255, 255, 255, 0.98);
      --bg-card-hover: rgba(255, 255, 255, 1);
      
      --text-primary: #1A1815;
      --text-secondary: rgba(26, 24, 21, 0.95);
      --text-tertiary: rgba(26, 24, 21, 0.85);
      --text-muted: rgba(26, 24, 21, 0.75);

      --border-subtle: rgba(26, 24, 21, 0.12);
      --border-medium: rgba(26, 24, 21, 0.18);
      --border-strong: rgba(26, 24, 21, 0.3);

      /* Shadows for card layering */
      --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
      --shadow-glow: 0 0 20px rgba(31, 131, 164, 0.15);

      /* Adaptive text colors */
      --text-adaptive-dark: #1A1815;
      --text-adaptive-light: #FFFFFF;
      --text-adaptive-auto: var(--text-adaptive-dark);

      /* Status Colors */
      --success: #22c55e;
      --success-fade: rgba(34, 197, 94, 0.15);
      --warning: #fbbf24;
      --warning-fade: rgba(251, 191, 36, 0.15);
      --error: #ef4444;
      --error-fade: rgba(239, 68, 68, 0.15);

      /* Transitions */
      --transition-fast: 0.2s ease;
      --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .clickable-link {
      color: var(--primary);
      text-decoration: none;
      cursor: pointer;
      transition: all var(--transition-base);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 12px;
      background: var(--primary-fade);
      border: 1px solid var(--primary-fade-medium);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .clickable-link:hover {
      color: var(--primary-light);
      background: var(--primary-fade-medium);
      border-color: var(--primary-fade-strong);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px var(--primary-fade-medium);
    }

    .clickable-link:active {
      transform: translateY(0);
    }

    .clickable-link i {
      font-size: 16px;
      opacity: 0.9;
    }

    .refund-policy-section {
      margin-top: 16px;
    }

    body {
      font-family: 'Manrope', 'Inter', sans-serif;
      background: var(--bg-primary);
      background: var(--logo-gradient);
      background-attachment: fixed;
      position: relative;
    }
    
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(197, 159, 145, 0.25) 0%, transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(31, 131, 164, 0.3) 0%, transparent 50%),
                  radial-gradient(circle at 50% 50%, rgba(179, 141, 146, 0.2) 0%, transparent 70%),
                  radial-gradient(circle at 10% 90%, rgba(77, 179, 205, 0.15) 0%, transparent 40%);
      pointer-events: none;
      z-index: 0;
      animation: radiantPulse 8s ease-in-out infinite;
    }
    
    @keyframes radiantPulse {
      0%, 100% { opacity: 0.8; }
      50% { opacity: 1; }
    }
    
    body > * {
      position: relative;
      z-index: 1;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--text-adaptive-auto);
    }

    /* Adaptive text based on container background */
    /* Light text on dark gradient background sections */
    .hero-content h1, .hero-content h2, .hero-content h3, .hero-content h4,
    .hero-content p, .hero-content span,
    .about-text h2, .about-text p,
    .location-info h3, .location-info p, .location-info span,
    .faq-section h2, .faq-section p,
    .footer h1, .footer h2, .footer h3, .footer h4, .footer p, .footer span {
      color: var(--text-adaptive-light);
    }

    /* Explicit white for FAQ section heading */
    .faq-section h2 {
      color: #FFFFFF !important;
    }

    /* Dark text on light card backgrounds */
    .stat-card strong, .stat-card span,
    .gallery-item span,
    .amenity-card span,
    .amenity-item span,
    .inclusion-category h3, .inclusion-category p,
    .booking-wrap h3, .booking-wrap p, .booking-wrap label,
    .calendar-placeholder .month, .calendar-placeholder span, .calendar-placeholder p,
    .landing-calendar-container *,
    .map-container *,
    .dist-item span,
    .rating-summary h3, .rating-summary p, .rating-summary span,
    .review-card h4, .review-card p, .review-card span,
    .contact-item span,
    .faq-item .faq-question-text, .faq-item p,
    .modal-content h3, .modal-content p, .modal-content label,
    .booking-form-container h3, .booking-form-container p, .booking-form-container label {
      color: #000000 !important;
    }

    /* ----- Booking Date Picker ----- */
    .booking-date-picker {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 24px;
    }

    .date-input-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .date-input-group label {
      font-size: 12px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    .date-input-group input,
    .date-input-group select {
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 12px;
      padding: 14px 16px;
      color: var(--text-primary);
      font-size: 15px;
      font-family: 'Manrope', sans-serif;
      transition: all 0.3s ease;
      outline: none;
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .date-input-group input:focus,
    .date-input-group select:focus {
      border-color: var(--primary-fade-strong);
      background: var(--bg-card-hover);
      box-shadow: 0 0 20px var(--primary-fade-medium);
    }

    .date-input-group input::placeholder {
      color: var(--text-muted);
    }

    .date-input-group select option {
      background: #ffffff;
      color: var(--text-primary);
    }

    /* ----- Section Header ----- */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-secondary);
      font-weight: 400;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ----- Booking Grid Layout ----- */
    .booking-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 32px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

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

    /* ----- Section Card ----- */
    .section-card {
      background: rgba(232, 221, 208, 0.95);
      border: 1px solid rgba(232, 221, 208, 0.8);
      border-radius: 24px;
      padding: 32px;
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .card-header {
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .card-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .card-header h3 i {
      color: var(--primary);
      font-size: 20px;
    }

    .card-subtitle {
      font-size: 14px;
      color: var(--text-secondary);
      font-weight: 400;
    }

    /* ----- Landing Calendar ----- */
    .landing-calendar-container {
      background: rgba(232, 221, 208, 0.9);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 16px;
      padding: 16px;
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding: 0 4px;
    }

    .calendar-header h4 {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: 0.5px;
    }

    .calendar-nav {
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--text-primary);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .calendar-nav:hover {
      background: var(--bg-card-hover);
      color: var(--text-primary);
      transform: scale(1.05);
    }

    .calendar-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      margin-bottom: 8px;
    }

    .calendar-weekdays span {
      text-align: center;
      font-size: 9px;
      font-weight: 600;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .calendar-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .calendar-day {
      aspect-ratio: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      color: var(--text-primary);
      position: relative;
      overflow: hidden;
      padding: 3px;
    }

    .day-number {
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
    }

    .day-indicator {
      font-size: 7px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-top: 2px;
      line-height: 1;
      white-space: nowrap;
    }

    .calendar-day.checkin .day-indicator {
      color: #ffffff;
    }

    .calendar-day.checkout .day-indicator {
      color: #ffffff;
    }

    .checkin-indicator {
      color: var(--primary);
    }

    .checkout-indicator {
      color: var(--primary);
    }

    .calendar-day::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(197, 159, 97, 0.1) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 0;
    }

    .calendar-day:hover:not(.disabled)::before {
      opacity: 1;
    }

    .calendar-day:hover:not(.disabled) {
      background: var(--bg-card-hover);
      color: var(--text-primary);
      transform: translateY(-1px);
    }

    .calendar-day .day-number,
    .calendar-day .day-indicator {
      position: relative;
      z-index: 1;
    }

    .calendar-day.prev-month,
    .calendar-day.next-month {
      color: var(--text-muted);
    }

    .calendar-day.disabled {
      color: var(--text-muted);
      cursor: not-allowed;
    }

    .calendar-day.checkin {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: var(--text-primary);
      font-weight: 700;
      box-shadow: 0 2px 12px var(--primary-fade-medium);
      transform: scale(1.02);
    }

    .calendar-day.checkout {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: var(--text-primary);
      font-weight: 700;
      box-shadow: 0 2px 12px var(--primary-fade-medium);
      transform: scale(1.02);
    }

    .calendar-day.range {
      background: var(--primary-fade-medium);
      color: var(--text-primary);
      font-weight: 600;
    }

    .calendar-day.booked {
      color: var(--text-secondary);
      cursor: not-allowed;
      font-weight: 500;
    }

    .calendar-day.booked:hover {
      transform: none;
    }

    .calendar-day.maintenance {
      background: rgba(251, 191, 36, 0.15);
      color: rgba(251, 191, 36, 0.7);
      cursor: not-allowed;
      font-weight: 600;
    }

    .calendar-day.maintenance:hover {
      background: rgba(251, 191, 36, 0.2);
      transform: none;
    }

    /* Availability indicator dot */
    .availability-dot {
      display: block;
      width: 5px;
      height: 5px;
      background: #4ade80;
      border-radius: 50%;
      margin: 4px auto 0;
      box-shadow: 0 0 4px rgba(74, 222, 128, 0.4);
    }

    /* Booked indicator dot */
    .booked-dot {
      display: block;
      width: 5px;
      height: 5px;
      background: #ef4444;
      border-radius: 50%;
      margin: 4px auto 0;
      box-shadow: 0 0 4px rgba(239, 68, 68, 0.4);
    }

    .calendar-legend {
      display: flex;
      gap: 20px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border-subtle);
      justify-content: center;
      flex-wrap: wrap;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--text-tertiary);
      font-weight: 500;
    }

    .legend-color {
      width: 12px;
      height: 12px;
      border-radius: 3px;
    }

    .legend-color.checkin {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      box-shadow: 0 2px 6px var(--primary-fade-medium);
    }

    .legend-color.checkout {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      box-shadow: 0 2px 6px var(--primary-fade-medium);
    }

    .legend-color.range {
      background: var(--primary-fade-medium);
    }

    .legend-color.booked {
      background: rgba(239, 68, 68, 0.25);
      border: 1px solid rgba(239, 68, 68, 0.4);
    }

    .legend-color.maintenance {
      background: rgba(251, 191, 36, 0.25);
      border: 1px solid rgba(251, 191, 36, 0.4);
    }

    /* ----- Calendar Notice ----- */
    .calendar-notice {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
      padding: 12px 16px;
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 10px;
      font-size: 12px;
      color: var(--text-primary);
      font-weight: 400;
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .calendar-notice i {
      color: var(--primary);
      font-size: 14px;
    }

    /* ----- Booking Details Grid ----- */
    .booking-details-grid {
      display: grid;
      gap: 20px;
    }

    .detail-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .detail-item label {
      font-size: 11px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    .detail-value {
      font-size: 16px;
      font-weight: 600;
      color: #000000;
      padding: 12px 16px;
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 12px;
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .detail-select {
      width: 100%;
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 12px;
      padding: 14px 16px;
      color: #000000;
      font-size: 15px;
      font-family: 'Manrope', sans-serif;
      transition: all 0.3s ease;
      outline: none;
      cursor: pointer;
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .detail-select:focus {
      border-color: var(--primary-fade-strong);
      background: var(--bg-card-hover);
    }

    .detail-select option {
      background: #ffffff;
      color: var(--text-primary);
    }

    /* ----- Booking Action ----- */
    .booking-action {
      margin-top: 28px;
    }

    .btn-book {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      border: none;
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 16px;
      font-weight: 600;
      font-family: 'Manrope', sans-serif;
      cursor: pointer;
      transition: all var(--transition-base);
      box-shadow: 0 4px 16px var(--primary-fade-medium);
    }

    .btn-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px var(--primary-fade-strong);
    }

    .btn-book:active {
      transform: translateY(0);
    }

    .btn-book span {
      letter-spacing: 0.5px;
    }

    .btn-book i {
      transition: transform 0.3s ease;
    }

    .btn-book:hover i {
      transform: translateX(4px);
    }

    /* ----- Landing Dates Summary (Legacy) ----- */
    .landing-dates-summary {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    /* ----- New Booking Form Styles from Template ----- */
    .main-title {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      letter-spacing: -0.3px;
      font-size: 1.6rem;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(197, 159, 145, 0.15);
    }

    .main-title i {
      color: var(--primary);
      font-size: 1.6rem;
    }

    .secure-badge {
      background: rgba(232, 221, 208, 0.3);
      padding: 0.25rem 1rem;
      border-radius: 40px;
      font-size: 0.65rem;
      color: var(--text-secondary);
      border: 1px solid var(--primary);
      margin-left: auto;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .secure-badge i {
      color: var(--primary);
      margin-right: 4px;
    }

    .two-col {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .guest-section {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      background: #f5f5f5;
      padding: 1.2rem;
      border-radius: 12px;
      border: 1px solid #e0e0e0;
    }

    .guest-section .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #000000;
      letter-spacing: 0.3px;
      margin-bottom: 0.2rem;
    }

    .guest-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1rem;
    }

    .guest-info-grid {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .guest-info-column {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      align-items: stretch;
      flex: 1;
      min-width: 0;
    }

    .pets-toggle {
      display: flex;
      align-items: center;
    }

    .toggle-switch {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }

    .toggle-switch input[type="checkbox"] {
      display: none;
    }

    .toggle-slider {
      width: 44px;
      height: 24px;
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 12px;
      position: relative;
      transition: 0.3s;
    }

    .toggle-slider::before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      background: var(--text-secondary);
      border-radius: 50%;
      top: 2px;
      left: 2px;
      transition: 0.3s;
    }

    .toggle-switch input:checked + .toggle-slider {
      background: var(--primary);
      border-color: var(--primary);
    }

    .toggle-switch input:checked + .toggle-slider::before {
      transform: translateX(20px);
      background: #fff;
    }

    .toggle-label {
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      color: var(--text-secondary);
    }

    .toggle-switch input:checked ~ .toggle-label {
      color: var(--text-primary);
    }

    .special-request-textarea {
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 6px;
      color: var(--text-primary);
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      padding: 0.4rem 0.7rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      resize: vertical;
    }

    .special-request-textarea::placeholder {
      color: var(--text-muted);
      font-size: 0.75rem;
    }

    .special-request-textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(31, 131, 164, 0.15);
    }

    .field-row {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      padding: 0.2rem 0;
      align-items: stretch;
      width: 100%;
      max-width: 100%;
    }

    .field-row label {
      font-family: 'Playfair Display', serif;
      font-size: 0.65rem;
      color: #000000;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .field-row input[type="text"],
    .field-row input[type="email"],
    .field-row input[type="tel"] {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      color: #000000;
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      padding: 0.4rem 0.7rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      height: 36px;
      min-height: 36px;
      box-sizing: border-box;
      line-height: 1.4;
      margin: 0;
      display: block;
    }

    .field-row input[type="text"]:focus,
    .field-row input[type="email"]:focus,
    .field-row input[type="tel"]:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(31, 131, 164, 0.15);
    }

    .field-row input[type="text"]::placeholder,
    .field-row input[type="email"]::placeholder,
    .field-row input[type="tel"]::placeholder {
      color: var(--text-muted);
      font-size: 0.75rem;
    }

    .field-row input[type="number"] {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      color: #000000;
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      padding: 0.4rem 0.7rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      height: 36px;
      min-height: 36px;
      box-sizing: border-box;
      line-height: 1.4;
      margin: 0;
      display: block;
    }

    .field-row input[type="number"]:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(31, 131, 164, 0.15);
    }

    .field-row input[type="number"]::placeholder {
      color: var(--text-muted);
      font-size: 0.75rem;
    }

    /* Enhanced payment amount input styling */
    .field-row input#amountSent,
    .field-row input#amountSentCash {
      font-weight: 600;
      font-size: 1rem;
      padding: 0.5rem 0.7rem;
      background: rgba(201, 168, 108, 0.1);
      border: 2px solid rgba(201, 168, 108, 0.3);
    }

    .field-row input#amountSent:focus,
    .field-row input#amountSentCash:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
    }

    .field-row .guest-select {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      color: var(--text-primary);
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      padding: 0.4rem 0.7rem;
      width: 100%;
      max-width: 100%;
      outline: none;
      cursor: pointer;
      height: 36px;
      min-height: 36px;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
      line-height: 1.4;
      margin: 0;
    }

    .field-row .guest-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(31, 131, 164, 0.15);
    }

    .field-row .guest-select option {
      background: #ffffff;
      color: var(--text-primary);
    }

    .field-row .special-request-input {
      background: #ffffff !important;
      border: 1px solid #e0e0e0 !important;
      border-radius: 6px;
      color: #000000 !important;
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      padding: 0.4rem 0.7rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .field-row .special-request-input::placeholder {
      color: var(--text-muted);
      font-size: 0.75rem;
    }

    .field-row .special-request-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(31, 131, 164, 0.15);
    }

    .field-row .optional-badge {
      font-size: 0.5rem;
      color: var(--text-muted);
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      letter-spacing: 0.3px;
      margin-left: 2px;
    }

    .field-row.full-width {
      grid-column: 1 / -1;
    }

    .right-container {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .rates-container {
      background: #d4d0c8;
      border-radius: 1.2rem;
      padding: 1.2rem 1.5rem;
      border: 1px solid #c0bcb4;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: 0.15s ease;
    }

    .rates-container:hover {
      border-color: var(--primary);
      box-shadow: 0 4px 16px rgba(31, 131, 164, 0.15);
    }

    .rates-container .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #000000 !important;
      letter-spacing: 0.3px;
      margin-bottom: 0.6rem;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid rgba(197, 159, 145, 0.12);
    }

    .rate-item {
      display: flex;
      justify-content: space-between;
      padding: 0.25rem 0;
      font-size: 0.8rem;
      font-family: 'Manrope', sans-serif;
      color: #000000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .rate-item:last-child {
      border-bottom: none;
    }

    .rate-item .rate-label {
      color: #000000;
      font-family: 'Playfair Display', serif;
      font-size: 0.7rem;
      letter-spacing: 0.2px;
    }

    .rate-item .rate-value {
      color: #000000;
      font-weight: 500;
    }

    .rate-item .rate-value.blue {
      color: var(--primary);
    }

    .summary-container {
      background: #d4d0c8;
      border-radius: 1.2rem;
      padding: 1.5rem 1.5rem;
      border: 1px solid #c0bcb4;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: 0.15s ease;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .summary-container:hover {
      border-color: var(--primary);
      box-shadow: 0 4px 16px rgba(31, 131, 164, 0.15);
    }

    .summary-container .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #000000 !important;
      letter-spacing: 0.3px;
      margin-bottom: 0.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(197, 159, 145, 0.12);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      padding: 0.3rem 0;
      font-size: 0.85rem;
      font-family: 'Manrope', sans-serif;
    }

    .summary-row .label {
      font-family: 'Playfair Display', serif;
      color: #000000;
      font-weight: 400;
      font-size: 0.75rem;
      letter-spacing: 0.2px;
    }

    .summary-row .value {
      color: #000000;
      font-weight: 400;
    }

    .summary-row .value strong {
      color: #000000;
    }

    .summary-row.check-in-out {
      flex-direction: column;
      gap: 0.2rem;
      padding: 0.2rem 0;
    }

    .summary-row.check-in-out .line {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
    }

    .summary-row.check-in-out .line .label {
      font-family: 'Playfair Display', serif;
      font-size: 0.65rem;
      color: #000000;
      letter-spacing: 0.3px;
    }

    .summary-row.check-in-out .line .value {
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      color: #000000;
    }

    .summary-row.check-in-out .line .value strong {
      color: #000000;
    }

    .summary-row.subtotal {
      border-bottom: 1px solid rgba(197, 159, 145, 0.08);
    }

    .summary-row.subtotal .value {
      color: #000000;
    }

    .summary-row.total {
      border-top: 2px solid rgba(197, 159, 145, 0.2);
      margin-top: 0.3rem;
      padding-top: 0.6rem;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .summary-row.total .value {
      color: #000000;
      font-weight: 600;
    }

    .summary-row .value .highlight {
      color: #000000;
      font-weight: 600;
    }

    .payment-section {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(197, 159, 145, 0.12);
    }

    .payment-row {
      display: flex;
      justify-content: space-between;
      padding: 0.3rem 0;
      font-size: 0.85rem;
      font-family: 'Manrope', sans-serif;
    }

    .payment-row .label {
      font-family: 'Playfair Display', serif;
      color: #000000;
      font-weight: 400;
      font-size: 0.75rem;
      letter-spacing: 0.2px;
    }

    .payment-row .value {
      color: #000000;
      font-weight: 600;
    }

    .payment-note {
      font-size: 0.6rem;
      color: #000000;
      text-align: right;
      margin-top: 0.1rem;
      font-family: 'Manrope', sans-serif;
    }

    .security-deposit {
      margin-top: 0.8rem;
      padding: 0.5rem 1rem;
      background: rgba(232, 221, 208, 0.5);
      border-radius: 30px;
      border: 1px solid rgba(197, 159, 145, 0.1);
      font-size: 0.65rem;
      color: #000000;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'Manrope', sans-serif;
    }

    .security-deposit i {
      color: var(--primary);
      font-size: 0.8rem;
    }

    .security-deposit strong {
      font-family: 'Playfair Display', serif;
      color: #000000;
      font-weight: 600;
    }

    .action-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(197, 159, 145, 0.12);
    }

    .btn-back {
      background: transparent;
      border: 1px solid rgba(197, 159, 145, 0.2);
      color: var(--text-secondary);
      padding: 0.5rem 1.8rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: 0.15s;
      font-family: 'Playfair Display', serif;
      letter-spacing: 0.3px;
    }

    .btn-back i {
      margin-right: 6px;
      color: var(--primary);
    }

    .btn-back:hover {
      border-color: var(--primary);
      background: rgba(197, 159, 145, 0.05);
    }

    .btn-continue {
      background: var(--primary);
      border: none;
      color: #fff;
      padding: 0.5rem 2.2rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.15s;
      box-shadow: 0 4px 14px rgba(31, 131, 164, 0.3);
      font-family: 'Playfair Display', serif;
      letter-spacing: 0.3px;
    }

    .btn-continue i {
      margin-left: 6px;
    }

    .btn-continue:hover {
      background: var(--bg-secondary);
      box-shadow: 0 4px 18px rgba(31, 131, 164, 0.4);
    }

    @media (max-width: 768px) {
      .guest-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .guest-grid {
        flex-direction: column;
        gap: 0.5rem;
      }
      .field-row {
        min-width: 100%;
      }
    }

    @media (max-width: 500px) {
      .main-title {
        font-size: 1.2rem;
        flex-wrap: wrap;
      }
      .secure-badge {
        margin-left: 0;
        font-size: 0.6rem;
      }
      .action-row {
        flex-direction: column;
        gap: 0.8rem;
      }
      .btn-back,
      .btn-continue {
        width: 100%;
        text-align: center;
      }
      .rates-container,
      .summary-container {
        padding: 1rem;
      }
      .guest-grid {
        flex-direction: column;
      }
      .field-row {
        min-width: 100%;
      }
    }

    .info-box {
      margin-top: 1.5rem;
      padding: 1rem 1.5rem;
      background: rgba(232, 221, 208, 0.5);
      border: 1px solid rgba(197, 159, 145, 0.2);
      border-radius: 12px;
    }

    .info-box-content {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .info-icon {
      color: var(--primary);
      font-size: 1.2rem;
      margin-top: 0.2rem;
    }

    .info-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #000000;
      margin-bottom: 0.3rem;
    }

    .info-text {
      font-family: 'Manrope', sans-serif;
      font-size: 0.75rem;
      color: #000000;
      line-height: 1.5;
    }

    .detail-value {
      font-size: 0.8rem;
      font-weight: 500;
      color: #000000;
      padding: 0.4rem 0.7rem;
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 6px;
    }

    .date-summary-item {
      background: rgba(232, 221, 208, 0.9);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 16px;
      padding: 20px;
      backdrop-filter: blur(16px) saturate(150%);
      -webkit-backdrop-filter: blur(16px) saturate(150%);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .date-summary-item label {
      font-size: 11px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
      margin-bottom: 8px;
      display: block;
    }

    .date-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .date-summary-item select {
      width: 100%;
      background: rgba(232, 221, 208, 0.85);
      border: 1px solid rgba(232, 221, 208, 0.7);
      border-radius: 12px;
      padding: 12px 16px;
      color: var(--text-primary);
      font-size: 15px;
      font-family: 'Manrope', sans-serif;
      transition: all 0.3s ease;
      outline: none;
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .date-summary-item select:focus {
      border-color: var(--primary-fade-strong);
      background: var(--bg-card-hover);
    }

    .date-summary-item select option {
      background: #ffffff;
      color: var(--text-primary);
    }

    /* ----- scroll progress (elegant gold) ----- */
    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: var(--primary);
      z-index: 9999;
      width: 0%;
      transition: width 0.1s ease-out;
    }

    /* ----- navigation (dark, elegant) ----- */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: all 0.4s ease;
      background: rgba(232, 221, 208, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-medium);
    }

    .navbar.scrolled {
      background: rgba(221, 211, 197, 0.98);
      padding: 15px 50px;
    }

    .navbar.scrolled .btn-primary {
      padding: 12px 28px;
      font-size: 0.85rem;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      color: var(--text-primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
    }
    .logo span {
      font-weight: 400;
      color: var(--text-secondary);
    }
    .logo > span {
      display: flex;
      align-items: baseline;
      gap: 2px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-primary);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      transition: 0.3s;
      position: relative;
      padding: 4px 0;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: var(--transition-base);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .btn-admin {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      border: 1px solid var(--border-medium);
      border-radius: 50px;
      color: var(--text-primary);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: 0.3s;
      background: transparent;
    }
    .btn-admin:hover {
      border-color: var(--primary);
      background: var(--primary-fade);
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-primary);
      transition: 0.2s;
    }
    .menu-toggle:hover { opacity: 0.7; }

    /* ----- Responsive Navbar ----- */
    @media (max-width: 1024px) {
      .navbar {
        padding: 16px 30px;
      }

      .navbar.scrolled {
        padding: 14px 30px;
      }

      .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
      }

      .navbar.scrolled .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 14px 20px;
      }

      .navbar.scrolled {
        padding: 12px 20px;
      }

      .logo-img {
        height: 32px;
      }

      .logo {
        font-size: 1.5rem;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(232, 221, 208, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-medium);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        font-size: 0.9rem;
        padding: 8px 0;
      }

      .nav-right {
        gap: 12px;
      }

      .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
        gap: 6px;
      }

      .navbar.scrolled .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
        gap: 6px;
      }

      .btn-primary i {
        font-size: 0.8rem;
      }

      .menu-toggle {
        display: block;
      }
    }

    @media (max-width: 480px) {
      .navbar {
        padding: 12px 16px;
      }

      .navbar.scrolled {
        padding: 10px 16px;
      }

      .logo-img {
        height: 28px;
      }

      .logo {
        font-size: 1.3rem;
      }

      .btn-primary {
        padding: 8px 16px;
        font-size: 0.75rem;
        gap: 4px;
      }

      .navbar.scrolled .btn-primary {
        padding: 8px 16px;
        font-size: 0.75rem;
        gap: 4px;
      }

      .btn-primary i {
        font-size: 0.75rem;
      }

      .menu-toggle {
        font-size: 1.3rem;
      }
    }

    /* ----- hero : dark, elegant, full-screen ----- */
    .hero {
      min-height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 0 24px;
    }

    .hero-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slideshow .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease;
    }
    .hero-slideshow .slide.active {
      opacity: 1;
    }
    .hero-slideshow video.slide {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* hero slideshow with background image and videos */
    .slide-1 { background-image: url('../Picture/BACKGROUND/DSC_4717.jpg'); }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
      z-index: 1;
    }

    .hero-nav-left,
    .hero-nav-right {
      position: absolute;
      z-index: 10;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.5rem;
      cursor: pointer;
      transition: 0.3s;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .hero-nav-left { left: 30px; }
    .hero-nav-right { right: 30px; }
    .hero-nav-left:hover,
    .hero-nav-right:hover {
      color: rgba(255, 255, 255, 1);
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      text-align: center;
      color: #ffffff;
      padding: 40px 20px;
    }

    .award-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border: 1px solid var(--border-medium);
      border-radius: 50px;
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      color: var(--text-primary);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 30px;
    }
    .award-badge i {
      color: var(--primary);
      font-size: 0.9rem;
    }

    .hero-title {
      margin-bottom: 20px;
    }
    .hero-title-main {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 600;
      letter-spacing: -2px;
      line-height: 1.1;
      display: block;
      background: var(--logo-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-title-sub {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 400;
      font-style: italic;
      letter-spacing: -0.5px;
      opacity: 0.9;
      background: var(--logo-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      font-weight: 300;
      max-width: 500px;
      margin: 0 auto 40px;
      opacity: 0.8;
      letter-spacing: 0.5px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary {
      background: var(--logo-gradient);
      color: var(--text-primary);
      border: none;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .btn-primary:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(197, 159, 145, 0.4);
    }
    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-secondary {
      background: var(--logo-gradient);
      color: var(--text-primary);
      border: none;
    }
    .btn-secondary:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
    }

    .carousel-indicators {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .indicator {
      width: 40px;
      height: 4px;
      background: var(--border-medium);
      border-radius: 2px;
      cursor: pointer;
      transition: 0.3s;
    }
    .indicator.active {
      background: var(--primary);
    }
    .indicator:hover {
      background: var(--text-muted);
    }

    /* ----- sections : dark, elegant spacing ----- */
    section {
      padding: 100px 50px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: -1px;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.95) !important;
    }
    .section-sub {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 300;
      margin-bottom: 48px;
      font-size: 1.1rem;
      max-width: 540px;
    }

    /* reveal animations (subtle, performant) */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ----- about (2 col, dark elegant) ----- */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-text h2 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.95);
    }
    .about-text p {
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 20px;
      font-weight: 300;
      line-height: 1.8;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 30px;
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 18px 6px;
      border-radius: 28px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: 0.3s;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .stat-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(197, 159, 145, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .stat-card:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(197, 159, 145, 0.2);
    }
    .stat-card:hover::before {
      opacity: 1;
    }
    .stat-card i { font-size: 1.7rem; color: var(--text-adaptive-light); margin-bottom: 4px; }
    .stat-card strong { display: block; font-size: 1.6rem; font-weight: 600; color: var(--text-adaptive-light); }
    .stat-card span { font-size: 0.85rem; color: var(--text-adaptive-light); }

    /* ----- villa panorama video slideshow ----- */
    .villa-panorama-container {
      position: relative;
      background: var(--bg-card);
      border-radius: 40px;
      height: 340px;
      overflow: hidden;
      border: 1px solid var(--border-medium);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    .video-slideshow {
      position: absolute;
      inset: 0;
    }
    .video-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
    }
    .video-slide.active {
      opacity: 1;
    }
    .video-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
      z-index: 10;
    }
    .video-overlay h3 {
      font-size: 1.4rem;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 4px;
    }
    .video-overlay p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
    }
    .video-nav-left,
    .video-nav-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-medium);
      border-radius: 50%;
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 15;
      font-size: 1rem;
    }
    .video-nav-left { left: 16px; }
    .video-nav-right { right: 16px; }
    .video-nav-left:hover,
    .video-nav-right:hover {
      background: var(--primary-fade-medium);
      border-color: var(--primary-fade-strong);
      transform: translateY(-50%) scale(1.1);
    }
    .video-indicators {
      position: absolute;
      bottom: 16px;
      right: 16px;
      display: flex;
      gap: 8px;
      z-index: 15;
    }
    .video-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .video-indicator.active {
      background: var(--primary);
      transform: scale(1.2);
    }
    .video-indicator:hover {
      background: var(--primary-fade-strong);
    }

    /* ----- gallery : dark elegant, spacious ----- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .gallery-item {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--bg-card);
      aspect-ratio: 4 / 3;
      box-shadow: var(--shadow-lg);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--border-medium);
    }
    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(197, 159, 145, 0.15) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }
    .gallery-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(197, 159, 145, 0.3);
      border-color: var(--primary-fade-strong);
    }
    .gallery-item:hover::before {
      opacity: 1;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item .cat-tag {
      position: absolute;
      bottom: 20px;
      left: 18px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: var(--text-adaptive-light);
      padding: 4px 18px;
      border-radius: 40px;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      font-weight: 500;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    .gallery-item.slideshow-item {
      border-color: var(--primary-fade-strong);
    }
    .gallery-item.slideshow-item:hover {
      border-color: var(--primary-fade-medium);
    }
    .gallery-item.slideshow-item .cat-tag {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-color: rgba(255, 255, 255, 0.4);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    .gallery-item.slideshow-item .cat-tag i {
      margin-left: 6px;
    }

    /* lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 92vw;
      max-height: 85vh;
      border-radius: 36px;
      box-shadow: 0 40px 70px rgba(0, 0, 0, 0.8);
    }
    .lightbox .close-lightbox {
      position: absolute;
      top: 28px;
      right: 36px;
      color: #ffffff;
      font-size: 2.8rem;
      cursor: pointer;
      opacity: 0.6;
      transition: 0.2s;
      z-index: 2001;
    }
    .lightbox .close-lightbox:hover { opacity: 1; }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-medium);
      color: var(--text-primary);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 2001;
      font-size: 1.2rem;
    }
    .lightbox-nav:hover {
      background: var(--primary-fade-medium);
      border-color: var(--primary-fade-strong);
      transform: translateY(-50%) scale(1.1);
    }
    .lightbox-prev { left: 36px; }
    .lightbox-next { right: 36px; }

    /* ----- amenities : dark elegant cards ----- */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 22px;
    }
    .amenity-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 32px;
      padding: 30px 12px 24px;
      text-align: center;
      transition: 0.3s ease;
      box-shadow: var(--shadow-md);
    }
    .amenity-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.25);
      box-shadow: var(--shadow-lg);
      border-color: rgba(255, 255, 255, 0.5);
    }
    .amenity-card i { font-size: 2.4rem; color: var(--text-adaptive-light); margin-bottom: 12px; }
    .amenity-card span { display: block; font-weight: 500; font-size: 0.95rem; color: var(--text-adaptive-light); }

    /* ----- Inclusions : premium resort design ----- */
    .inclusions-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .smaller-categories-column {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .inclusion-category {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      padding: 24px 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    /* ----- Amenities Grid ----- */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 24px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 16px;
      box-shadow: var(--shadow-md);
    }

    .amenity-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .amenity-icon {
      font-size: 1.4rem;
      min-width: 32px;
      text-align: center;
      color: var(--text-adaptive-light);
      filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
    }

    .amenity-icon i {
      font-size: 1.4rem;
    }

    .amenity-item span:last-child {
      font-size: 0.95rem;
      color: var(--text-adaptive-light);
      font-weight: 500;
      letter-spacing: 0.2px;
    }

    @media (max-width: 768px) {
      .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
        padding: 20px;
      }

      .amenity-icon {
        font-size: 1.2rem;
        min-width: 28px;
      }

      .amenity-item span:last-child {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 14px;
        padding: 16px;
      }

      .amenity-icon {
        font-size: 1.1rem;
        min-width: 24px;
      }

      .amenity-item span:last-child {
        font-size: 0.8rem;
      }
    }

    /* ----- booking : dark elegant ----- */
    .booking-wrap {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 48px;
      padding: 48px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .booking-form input, .booking-form select, .booking-form textarea {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid var(--border-medium);
      border-radius: 40px;
      font-family: inherit;
      background: var(--bg-card);
      color: var(--text-primary);
      transition: 0.3s;
      margin-bottom: 14px;
      font-weight: 400;
    }
    .booking-form input::placeholder,
    .booking-form textarea::placeholder {
      color: var(--text-muted);
    }
    .booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 4px var(--primary-fade);
      background: var(--bg-card-hover);
    }
    .booking-form select option {
      background: var(--bg-card);
      color: var(--text-primary);
    }
    .booking-form .btn-primary {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
    }
    .calendar-placeholder {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 36px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .calendar-placeholder .month {
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 18px;
      color: var(--text-primary);
    }
    .calendar-placeholder span {
      color: var(--text-secondary);
    }
    .calendar-placeholder p {
      color: var(--text-tertiary);
    }

    /* ----- location ----- */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
    }
    
    .location-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .location-info h3 {
      margin: 0;
      font-size: 1.8rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      letter-spacing: 0.3px;
    }
    
    .location-subtitle {
      margin: 0;
      font-size: 1.1rem;
      color: var(--primary-light);
      font-weight: 500;
      letter-spacing: 0.2px;
    }
    
    .location-description {
      margin: 0;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
    }
    
    .location-note {
      margin: 0;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      font-style: italic;
      line-height: 1.5;
    }
    
    .map-container {
      position: relative;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 40px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .map-container iframe {
      display: block;
    }
    .map-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--logo-gradient);
      color: var(--text-primary);
      padding: 12px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      z-index: 10;
    }
    .map-link-btn:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(197, 159, 97, 0.3);
    }
    .distance-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .dist-item {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 16px 24px;
      border-radius: 40px;
      display: flex;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--text-adaptive-light);
      transition: 0.3s;
      box-shadow: var(--shadow-sm);
    }
    .dist-item:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* ----- reviews & ratings ----- */
    .rating-summary {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 24px;
      padding: 32px;
      margin-bottom: 40px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: var(--shadow-md);
    }
    
    .rating-overview {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: center;
    }
    
    .rating-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }
    
    .average-score {
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--primary);
      line-height: 1;
    }
    
    .stars-display {
      font-size: 1.8rem;
      color: var(--primary);
      letter-spacing: 4px;
    }
    
    .total-reviews {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    
    .rating-breakdown {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .rating-bar {
      display: grid;
      grid-template-columns: 40px 1fr 30px;
      align-items: center;
      gap: 12px;
    }
    
    .rating-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
      font-weight: 500;
    }
    
    .bar-container {
      height: 8px;
      background: var(--border-medium);
      border-radius: 4px;
      overflow: hidden;
    }
    
    .bar-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 4px;
      transition: width 0.5s ease;
    }
    
    .rating-count {
      font-size: 0.85rem;
      color: var(--text-tertiary);
      text-align: right;
    }
    
    .reviews-container {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      position: relative;
    }

    .reviews-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      flex: 1;
      transition: all 0.3s ease;
      min-width: 0;
    }

    .reviews-list .review-card {
      opacity: 0;
      animation: fadeInReview 0.4s ease forwards;
    }

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

    .review-nav-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--text-adaptive-light);
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      flex-shrink: 0;
      box-shadow: var(--shadow-md);
    }

    .review-nav-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: scale(1.1);
      box-shadow: var(--shadow-lg);
    }

    .review-nav-btn:active {
      transform: scale(0.95);
    }
    
    .no-reviews {
      text-align: center;
      color: var(--text-tertiary);
      font-size: 1.1rem;
      padding: 60px 20px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: var(--shadow-sm);
    }
    
    .review-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--text-adaptive-light);
      transition: all 0.3s ease;
      box-shadow: var(--shadow-md);
    }
    
    .review-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.25);
      box-shadow: var(--shadow-lg);
      border-color: rgba(255, 255, 255, 0.5);
    }
    
    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }
    
    .review-stars {
      font-size: 1.1rem;
      color: var(--primary);
      letter-spacing: 2px;
    }
    
    .review-date {
      font-size: 0.8rem;
      color: var(--text-tertiary);
    }
    
    .review-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text-primary);
      margin-bottom: 14px;
    }
    
    .reviewer-name {
      font-size: 0.85rem;
      color: var(--text-secondary);
      font-style: italic;
    }
    
    .write-review-section {
      text-align: center;
      margin-top: 32px;
    }

    .write-review-section .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background: var(--logo-gradient);
      border: none;
      border-radius: 10px;
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      font-family: 'Manrope', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px var(--primary-fade-medium);
    }

    .write-review-section .btn-primary:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px var(--primary-fade-strong);
    }
    
    @media (max-width: 768px) {
      .rating-overview {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .rating-main {
        margin-bottom: 8px;
      }

      .average-score {
        font-size: 2.8rem;
      }

      .stars-display {
        font-size: 1.5rem;
      }

      .reviews-container {
        flex-direction: column;
      }

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

      .review-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      
      .rating-bar {
        grid-template-columns: 35px 1fr 25px;
        gap: 8px;
      }
      
      .rating-label {
        font-size: 0.8rem;
      }
      
      .rating-count {
        font-size: 0.75rem;
      }
      
      .reviews-list {
        grid-template-columns: 1fr;
      }
    }

    /* ----- review modal ----- */
    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: modalFadeIn 0.3s ease-out;
    }
    @keyframes modalFadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    .modal-content {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 32px;
      max-width: 520px;
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes modalSlideUp {
      from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    @keyframes modalSlideDown {
      from {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      to {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 36px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .modal-header h3 {
      font-size: 1.6rem;
      font-weight: 600;
      color: #1a1a1a;
      margin: 0;
      letter-spacing: -0.5px;
    }
    .close-modal {
      font-size: 1.8rem;
      color: #6b7280;
      cursor: pointer;
      transition: all 0.2s ease;
      line-height: 1;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.05);
    }
    .close-modal:hover {
      color: #1a1a1a;
      background: rgba(0, 0, 0, 0.1);
      transform: rotate(90deg);
    }
    .modal-body {
      padding: 36px;
    }
    .form-group {
      margin-bottom: 28px;
    }
    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-size: 0.95rem;
      color: #374151;
      font-weight: 600;
      letter-spacing: -0.2px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 16px 24px;
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      background: #ffffff;
      color: #1a1a1a;
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.2s ease;
      font-weight: 500;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
      background: #fafbfc;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #9ca3af;
    }
    .form-group select option {
      background: #ffffff;
      color: #1a1a1a;
    }
    .form-group textarea {
      border-radius: 16px;
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }
    .star-rating {
      display: flex;
      gap: 12px;
      padding: 8px 0;
    }
    .star-rating .star {
      font-size: 2.2rem;
      color: #d1d5db;
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
    }
    .star-rating .star:hover,
    .star-rating .star.active {
      color: #fbbf24;
      transform: scale(1.15);
    }
    .star-rating .star:hover ~ .star {
      color: #d1d5db;
    }
    .modal .btn-primary {
      width: 100%;
      padding: 16px 32px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 16px;
      margin-top: 8px;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-align: center;
    }
    .modal .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
    }

    /* ----- contact : dark elegant ----- */
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 20px;
      background: rgba(255, 255, 255, 0.15);
      padding: 14px 26px;
      border-radius: 50px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--text-adaptive-light);
      transition: 0.3s;
      box-shadow: var(--shadow-md);
    }
    .contact-item:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
    }
    .contact-item i { font-size: 1.5rem; color: var(--text-adaptive-light); width: 32px; }

    /* ----- footer (dark, elegant) ----- */
    .footer {
      background: var(--primary);
      color: rgba(255, 255, 255, 0.85);
      padding: 60px 40px 30px;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
    }
    .footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: 0.3s; }
    .footer a:hover { color: var(--primary-light); }
    .footer .socials a { margin-right: 22px; font-size: 1.5rem; }
    .footer h4 { color: rgba(255, 255, 255, 0.95); margin-bottom: 12px; }
    .back-top {
      text-align: right;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
    }
    .back-top a { font-weight: 400; color: rgba(255, 255, 255, 0.7); }
    .back-top a:hover { color: var(--primary-light); }

    /* ----- responsive (mobile-first) ----- */
    @media (max-width: 1024px) {
      .about-grid, .booking-wrap, .location-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 768px) {
      .navbar { padding: 14px 20px; }
      .nav-links {
        display: none;
        flex-direction: column;
        gap: 18px;
        background: rgba(221, 211, 197, 0.98);
        backdrop-filter: blur(20px);
        padding: 32px 28px;
        border-radius: 32px;
        position: absolute;
        top: 72px;
        right: 16px;
        width: 220px;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--border-medium);
      }
      .nav-links.open { display: flex; }
      .menu-toggle { display: block; }
      .nav-right { gap: 10px; }
      .btn-admin { display: none; }
      section { padding: 60px 20px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
      .gallery-item:nth-child(5) { grid-column: span 1; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .booking-wrap { padding: 28px; }
      .hero-nav-left, .hero-nav-right { display: none; }
    }
    @media (max-width: 480px) {
      .hero-title-main { font-size: 2.4rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .review-card { flex: 0 0 260px; }
      .contact-grid { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    }

    /* ----- iPhone SE Specific (375x667px) ----- */
    @media (max-width: 375px) {
      /* Navigation */
      .navbar {
        padding: 10px 12px;
      }
      .navbar.scrolled {
        padding: 8px 12px;
      }
      .logo {
        font-size: 1.1rem;
      }
      .logo-img {
        height: 24px;
      }
      .menu-toggle {
        font-size: 1.2rem;
      }
      .nav-links {
        padding: 20px 16px;
        right: 12px;
        width: 200px;
      }
      .nav-links a {
        font-size: 0.85rem;
        padding: 6px 0;
      }

      /* Hero Section */
      .hero {
        padding: 0 16px;
      }
      .hero-content {
        padding: 30px 16px;
      }
      .hero-title-main {
        font-size: 2rem;
        line-height: 1.1;
      }
      .hero-title-sub {
        font-size: 1.2rem;
      }
      .hero-subtitle {
        font-size: 0.95rem;
        margin: 0 auto 30px;
      }
      .award-badge {
        padding: 6px 14px;
        font-size: 0.65rem;
        margin-bottom: 20px;
      }
      .hero-buttons {
        gap: 12px;
      }
      .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.8rem;
      }

      /* Section Titles */
      .section-title {
        font-size: 2rem;
      }
      .section-sub {
        font-size: 0.95rem;
      }

      /* Stats Grid */
      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .stat-card {
        padding: 14px 4px;
        border-radius: 20px;
      }
      .stat-card i {
        font-size: 1.4rem;
      }
      .stat-card strong {
        font-size: 1.3rem;
      }
      .stat-card span {
        font-size: 0.75rem;
      }

      /* Gallery */
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
      }
      .gallery-item {
        border-radius: 16px;
      }

      /* Booking Form */
      .booking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
      }
      .section-card {
        padding: 20px 16px;
        border-radius: 16px;
      }
      .booking-wrap {
        padding: 20px 16px;
        border-radius: 24px;
      }
      .landing-calendar-container {
        padding: 12px;
        border-radius: 12px;
      }
      .calendar-day {
        font-size: 10px;
        padding: 2px;
      }
      .day-number {
        font-size: 10px;
      }
      .day-indicator {
        font-size: 6px;
      }
      .calendar-weekdays span {
        font-size: 8px;
      }
      .calendar-legend {
        gap: 8px;
        font-size: 9px;
      }
      .legend-item {
        gap: 4px;
      }
      .calendar-notice {
        font-size: 10px;
        padding: 8px 10px;
      }

      /* Form Elements */
      .date-input-group input,
      .date-input-group select {
        padding: 12px 14px;
        font-size: 14px;
      }
      .date-input-group label {
        font-size: 10px;
      }
      .detail-value {
        font-size: 14px;
        padding: 10px 14px;
      }
      .btn-book {
        padding: 14px 24px;
        font-size: 14px;
      }

      /* Reviews */
      .rating-summary {
        padding: 20px 16px;
        border-radius: 16px;
      }
      .rating-overview {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .average-score {
        font-size: 2.2rem;
      }
      .stars-display {
        font-size: 1.3rem;
      }
      .reviews-list {
        grid-template-columns: 1fr;
      }
      .review-card {
        padding: 16px;
        border-radius: 12px;
      }
      .review-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
      }

      /* FAQ Section */
      .faq-section {
        padding: 60px 16px;
        border-radius: 20px;
      }
      .faq-container {
        padding: 20px 16px;
        border-radius: 20px;
      }
      .faq-question {
        padding: 16px 20px;
      }
      .faq-question-text {
        font-size: 14px;
      }
      .faq-answer p {
        padding: 0 20px 20px;
        font-size: 13px;
      }

      /* Contact */
      .contact-item {
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 0.85rem;
      }
      .contact-item i {
        font-size: 1.2rem;
        width: 24px;
      }

      /* Footer */
      .footer {
        padding: 40px 20px 20px;
      }
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Multi-step Form */
      .booking-form-container {
        padding: 20px 16px;
        border-radius: 16px;
      }
      .progress-steps {
        margin: 12px 4px;
      }
      .step-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
      }
      .step-label {
        font-size: 9px;
      }
      .booking-form-content {
        padding: 0 16px 16px;
      }
      .guest-details-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .booking-input-small {
        padding: 10px 12px;
        font-size: 14px;
      }
      .booking-select {
        padding: 10px 12px;
        font-size: 14px;
      }

      /* FAQ Floating Widget */
      .faq-floating {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        width: auto;
      }
      .faq-panel {
        max-height: 500px;
      }
      .faq-floating.open .faq-panel {
        max-height: 60vh;
      }
      .faq-trigger {
        width: 100%;
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
      }
      .faq-chat {
        max-height: 280px;
      }
      .faq-bubble {
        max-width: 90%;
        font-size: 0.85rem;
      }

      /* Modal */
      .modal-content {
        max-width: 100%;
        border-radius: 20px;
        margin: 20px 10px;
      }
      .modal-header {
        padding: 20px 24px;
      }
      .modal-header h3 {
        font-size: 1.3rem;
      }
      .modal-body {
        padding: 24px;
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 14px 18px;
        font-size: 0.9rem;
      }
      .star-rating .star {
        font-size: 1.8rem;
      }

      /* Section Padding */
      section {
        padding: 60px 16px;
      }

      /* Villa Panorama */
      .villa-panorama-container {
        height: 280px;
        border-radius: 24px;
      }
      .video-overlay {
        padding: 16px;
      }
      .video-overlay h3 {
        font-size: 1.1rem;
      }
      .video-overlay p {
        font-size: 0.75rem;
      }
      .video-nav-left,
      .video-nav-right {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
      }

      /* Amenities */
      .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
        padding: 16px;
      }
      .amenity-icon {
        font-size: 1rem;
        min-width: 20px;
      }
      .amenity-item span:last-child {
        font-size: 0.75rem;
      }

      /* Location */
      .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .map-container {
        border-radius: 24px;
        height: 250px;
      }
      .map-link-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        bottom: 16px;
        left: 16px;
      }
      .dist-item {
        padding: 12px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
      }

      /* Summary Cards */
      .rates-container,
      .summary-container {
        padding: 14px;
        border-radius: 12px;
      }
      .rate-item,
      .summary-row {
        font-size: 0.75rem;
      }
      .summary-row.total {
        font-size: 0.85rem;
      }

      /* Payment Options */
      .payment-method-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .payment-option {
        padding: 14px 16px;
      }
      .payment-option-text,
      .payment-option-text-large {
        font-size: 13px;
      }

      /* Info Box */
      .info-box {
        padding: 12px;
        border-radius: 10px;
      }
      .info-text {
        font-size: 0.7rem;
      }

      /* Terms Content */
      .terms-content {
        padding: 12px;
        border-radius: 10px;
        max-height: 300px;
      }
      .terms-text {
        font-size: 10px;
      }
      .policy-text {
        font-size: 10px;
      }

      /* Success Message */
      .success-message {
        padding: 24px 16px;
      }
      .success-icon {
        width: 56px;
        height: 56px;
      }
      .success-icon span {
        font-size: 28px;
      }
      .success-title {
        font-size: 18px;
      }
      .success-booking-id {
        font-size: 16px;
      }
      .success-message-text {
        font-size: 12px;
      }
    }

    /* utility */
    .text-center { text-align: center; }
    .mt-16 { margin-top: 16px; }
    .mb-16 { margin-bottom: 16px; }
    .gap-8 { gap: 8px; }

    /* ----- Refund Styles ----- */
    .refunds-container {
      padding: 20px 0;
    }

    .refunds-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .refunds-header .section-subtitle {
      color: var(--text-secondary);
      margin: 0;
    }

    .refunds-actions {
      display: flex;
      gap: 12px;
    }

    .booking-selection-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .booking-selection-item {
      background: var(--bg-card);
      border: 1px solid var(--border-medium);
      border-radius: 12px;
      padding: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .booking-selection-item:hover {
      background: var(--primary-fade);
      border-color: var(--primary-fade-medium);
      transform: translateY(-2px);
    }

    .refunds-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .refund-card {
      background: var(--bg-card);
      border: 1px solid var(--border-medium);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    .refund-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--primary-fade-medium);
    }

    .refund-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .refund-id {
      font-weight: 600;
      color: var(--primary);
      font-size: 14px;
    }

    .refund-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }

    .refund-detail-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .refund-detail-item label {
      font-size: 12px;
      color: var(--text-tertiary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .refund-detail-item span {
      font-size: 14px;
      color: var(--text-secondary);
    }

    .refund-admin-notes {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border-subtle);
      font-size: 13px;
      color: var(--text-secondary);
    }

    .refund-admin-notes strong {
      color: var(--text-primary);
    }

    .no-refunds {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
      font-size: 15px;
    }

    /* Refund Request Modal */
    .refund-request-modal {
      max-width: 700px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
    }

    .refund-policy-display {
      background: var(--primary-fade);
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 24px;
      border: 1px solid var(--primary-fade-medium);
    }

    .refund-policy-display h4 {
      margin: 0 0 12px 0;
      color: var(--primary);
    }

    .refund-policy-display pre {
      margin: 0;
      font-family: inherit;
      font-size: 13px;
      line-height: 1.8;
      color: var(--text-secondary);
      white-space: pre-wrap;
    }

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

    .refund-calculation-preview {
      background: rgba(255, 255, 255, 0.03);
      padding: 16px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .refund-calculation-preview h5 {
      margin: 0 0 12px 0;
      color: rgba(255, 255, 255, 0.8);
    }

    .form-checkbox {
      margin: 20px 0;
    }

    .form-checkbox label {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
    }

    .form-checkbox input[type="checkbox"] {
      margin-top: 4px;
      accent-color: #c9a86c;
    }

    .form-checkbox span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Status Badges */
    .status-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .status-pending {
      background: rgba(255, 193, 7, 0.15);
      color: #ffc107;
      border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .status-confirmed {
      background: rgba(76, 175, 80, 0.15);
      color: #4caf50;
      border: 1px solid rgba(76, 175, 80, 0.3);
    }

    .status-cancelled,
    .status-rejected {
      background: rgba(244, 67, 54, 0.15);
      color: #f44336;
      border: 1px solid rgba(244, 67, 54, 0.3);
    }

    .status-completed {
      background: rgba(33, 150, 243, 0.15);
      color: #2196f3;
      border: 1px solid rgba(33, 150, 243, 0.3);
    }

    /* Payment History Section */
    .payment-history-section {
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .payment-history-section h3 {
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.8);
    }

    .payment-history-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .payment-history-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    .payment-history-item:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(201, 168, 108, 0.2);
    }

    .payment-history-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .payment-history-id {
      font-weight: 600;
      color: #c9a86c;
      font-size: 14px;
    }

    .payment-history-date {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
    }

    .payment-history-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }

    /* ----- Booking Form Inline Styles ----- */
    .booking-form-group {
      margin-bottom: 16px;
    }

    .booking-label {
      display: block;
      margin-bottom: 4px;
      font-size: 11px;
      color: var(--text-secondary);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .booking-label-medium {
      display: block;
      margin-bottom: 6px;
      font-size: 11px;
      color: var(--text-secondary);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .booking-label-large {
      display: block;
      margin-bottom: 10px;
      font-size: 12px;
      color: var(--text-secondary);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .booking-input {
      width: 100%;
      padding: 10px 12px;
      background: var(--bg-card);
      border: 1px solid var(--border-medium);
      border-radius: 8px;
      color: var(--text-primary);
      font-size: 13px;
    }

    .booking-input:focus {
      outline: none;
      border-color: var(--primary);
    }

    .booking-textarea {
      width: 100%;
      padding: 10px 12px;
      background: var(--bg-card);
      border: 1px solid var(--border-medium);
      border-radius: 8px;
      color: var(--text-primary);
      font-size: 13px;
      resize: vertical;
    }

    .booking-textarea:focus {
      outline: none;
      border-color: var(--primary);
    }

    .select-wrapper {
      position: relative;
    }

    .select-icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      pointer-events: none;
      font-size: 11px;
    }

    .date-summary-section {
      margin-top: 16px;
      padding: 16px;
      background: var(--bg-card);
      border-radius: 12px;
      border: 1px solid var(--border-medium);
    }

    .date-summary-title {
      margin: 0 0 12px 0;
      font-size: 13px;
      color: #c9a86c;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .date-summary-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .date-summary-item {
      padding: 12px;
      background: var(--bg-secondary);
      border-radius: 8px;
    }

    .date-summary-label {
      display: block;
      margin-bottom: 4px;
      font-size: 10px;
      color: var(--text-tertiary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .detail-value {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
    }

    .rates-info-section {
      margin-top: 16px;
      padding: 16px;
      background: var(--bg-card);
      border-radius: 10px;
      border: 1px solid var(--border-medium);
    }

    .rates-info-item {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
    }

    .rates-info-text {
      font-size: 12px;
      color: var(--text-primary);
    }

    .rates-info-highlight {
      color: #c9a86c;
    }

    .booking-summary-section {
      margin-top: 16px;
      padding: 16px;
      background: var(--bg-card);
      border-radius: 12px;
      border: 1px solid var(--border-medium);
    }

    .booking-summary-title {
      margin: 0 0 12px 0;
      font-size: 13px;
      color: #c9a86c;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .summary-grid-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .summary-section {
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(201, 168, 108, 0.1);
    }

    .summary-section:last-child {
      border-bottom: none;
    }

    .summary-section-no-border {
      border-bottom: none;
    }

    .summary-label {
      margin: 0 0 4px 0;
      font-size: 10px;
      color: var(--text-tertiary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .summary-value {
      margin: 0;
      font-size: 14px;
      color: var(--text-primary);
      font-weight: 600;
    }

    .summary-value-medium {
      margin: 0;
      font-size: 13px;
      color: var(--text-primary);
      font-weight: 500;
    }

    .summary-value-small {
      margin: 0;
      font-size: 12px;
      color: var(--text-primary);
      font-weight: 500;
    }

    .summary-subtext {
      margin: 3px 0 0 0;
      font-size: 10px;
      color: var(--text-muted);
    }

    .summary-highlight {
      color: #c9a86c;
    }

    .security-deposit-box {
      padding: 12px;
      background: var(--bg-secondary);
      border-radius: 8px;
      border: 1px solid var(--border-medium);
    }

    .security-deposit-text {
      margin: 0 0 4px 0;
      font-size: 12px;
      color: var(--text-primary);
      font-weight: 600;
    }

    .security-deposit-subtext {
      margin: 0;
      font-size: 10px;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .booking-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      gap: 10px;
    }

    .btn-booking-cancel {
      flex: 1;
      padding: 10px 20px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-medium);
      border-radius: 8px;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-booking-cancel:hover {
      background: var(--bg-tertiary);
      color: var(--text-primary);
    }

    .btn-booking-continue {
      flex: 1;
      padding: 10px 20px;
      background: linear-gradient(135deg, #c9a86c 0%, #b8966a 100%);
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(201, 168, 108, 0.3);
    }

    .btn-booking-continue:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(201, 168, 108, 0.4);
    }

    .terms-content {
      background: #f5f5f5;
      padding: 16px;
      border-radius: 12px;
      margin-bottom: 16px;
      max-height: 350px;
      overflow-y: auto;
      border: 1px solid #e0e0e0;
    }

    .terms-header {
      text-align: center;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid #e0e0e0;
    }

    .terms-title {
      margin: 0 0 4px 0;
      font-size: 16px;
      color: #1a1a1a;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .terms-subtitle {
      margin: 0;
      font-size: 11px;
      color: #6a6a6a;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .terms-section {
      margin-bottom: 12px;
    }

    .terms-text {
      margin: 0 0 6px 0;
      font-size: 11px;
      color: #4a4a4a;
      line-height: 1.4;
    }

    .policy-item {
      margin-bottom: 12px;
      padding: 12px;
      background: var(--bg-secondary);
      border-radius: 8px;
    }

    .policy-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .policy-title {
      margin: 0;
      font-size: 12px;
      color: #c9a86c;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .policy-arrow {
      font-size: 12px;
      color: #c9a86c;
      transition: transform 0.3s ease;
    }

    .policy-arrow.rotated {
      transform: rotate(180deg);
    }

    .policy-content {
      display: block;
      margin-top: 6px;
    }

    .policy-content.show {
      display: block;
    }

    .policy-text {
      margin: 0;
      font-size: 11px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .terms-footer {
      margin-top: 16px;
      text-align: center;
      padding-top: 12px;
      border-top: 1px solid var(--border-medium);
    }

    .terms-footer-text {
      margin: 0;
      font-size: 10px;
      color: var(--text-muted);
    }

    .terms-footer-highlight {
      margin: 4px 0 0 0;
      font-size: 10px;
      color: #c9a86c;
      font-weight: 500;
    }

    /* FAQ styles within terms content - dark text for white background */
    .terms-content .faq-category-title {
      color: #1a1a1a;
    }

    .terms-content .faq-question-text {
      color: #1a1a1a;
      text-shadow: none;
    }

    .terms-content .faq-answer p {
      color: #4a4a4a;
      text-shadow: none;
    }

    .terms-content .faq-icon {
      color: #6a6a6a;
    }

    .terms-content .faq-item {
      background: transparent;
      border: 1px solid #e0e0e0;
    }

    .terms-content .faq-item:hover {
      background: rgba(232, 221, 208, 0.3);
    }

    /* FAQ page styling overrides - dark text for white background */
    .faq-page-content .faq-category-title {
      color: #1a1a1a !important;
    }

    .faq-page-content .faq-question-text {
      color: #1a1a1a !important;
      text-shadow: none !important;
    }

    .faq-page-content .faq-answer p {
      color: #4a4a4a !important;
      text-shadow: none !important;
    }

    .faq-page-content .faq-icon {
      color: #6a6a6a !important;
    }

    .faq-page-content .faq-item {
      background: transparent !important;
      border: 1px solid var(--border-medium) !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    .faq-page-content .faq-item:hover {
      background: rgba(232, 221, 208, 0.3) !important;
    }

    .agreement-checkbox {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 12px;
      background: transparent;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      transition: all 0.2s ease;
    }

    .agreement-checkbox:hover {
      background: rgba(232, 221, 208, 0.3);
    }

    .agreement-checkbox input {
      margin-right: 10px;
      margin-top: 2px;
      width: 16px;
      height: 16px;
      accent-color: #c9a86c;
    }

    .agreement-text {
      font-size: 12px;
      color: #4a4a4a;
      line-height: 1.3;
    }

    .payment-method-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .payment-option {
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      padding: 18px 20px;
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .payment-option input[type="radio"] {
      width: 18px;
      height: 18px;
      accent-color: #c9a86c;
      cursor: pointer;
      margin: 0;
      flex-shrink: 0;
    }

    .payment-option-text,
    .payment-option-text-large {
      font-size: 14px;
      color: #1a1a1a;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .payment-option input:checked + .payment-option-text,
    .payment-option input:checked + .payment-option-text-large {
      color: #c9a86c;
    }

    /* ----- Step 4 Confirmation Summary ----- */
    .confirm-summary-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-medium);
    }

    .confirm-summary-item {
      padding: 12px;
      background: var(--bg-secondary);
      border-radius: 8px;
    }

    .confirm-summary-value {
      margin: 0;
      font-size: 13px;
      color: var(--text-primary);
      font-weight: 500;
    }

    .confirm-amount-value {
      margin: 0;
      font-size: 15px;
      color: var(--text-primary);
      font-weight: 600;
    }

    .confirm-highlight-value {
      margin: 0;
      font-size: 15px;
      color: #c9a86c;
      font-weight: 600;
    }

    .info-box {
      margin-bottom: 16px;
      padding: 12px;
      background: var(--bg-card);
      border-radius: 10px;
      border: 1px solid var(--border-medium);
    }

    .info-box-content {
      display: flex;
      align-items: start;
      gap: 10px;
    }

    .info-icon {
      color: #c9a86c;
      font-size: 14px;
      margin-top: 2px;
    }

    .info-title {
      margin: 0 0 4px 0;
      font-size: 12px;
      color: var(--text-primary);
      font-weight: 500;
    }

    .info-text {
      margin: 0;
      font-size: 11px;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* ----- Success Message ----- */
    .success-message {
      text-align: center;
      padding: 32px 20px;
    }

    .success-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--logo-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 8px 24px rgba(197, 159, 145, 0.4);
    }

    .success-icon span {
      font-size: 32px;
      color: var(--text-primary);
    }

    .success-title {
      margin: 0 0 10px 0;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 400;
      color: #1a1a1a;
      letter-spacing: 0.3px;
    }

    .success-subtitle {
      margin: 0 0 8px 0;
      color: #4a4a4a;
      font-size: 14px;
    }

    .success-booking-id {
      margin: 0 0 24px 0;
      color: #1a1a1a;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .success-message-text {
      margin: 0 0 32px 0;
      color: #4a4a4a;
      font-size: 13px;
      line-height: 1.5;
    }

    .btn-close {
      padding: 12px 32px;
      background: var(--logo-gradient);
      border: none;
      border-radius: 10px;
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(201, 168, 108, 0.3);
    }

    .btn-close:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(201, 168, 108, 0.4);
    }

    /* ----- Multi-Step Booking Form ----- */
    .multi-step-booking-form {
      display: none;
      width: 100%;
      max-width: none;
      margin: 0 auto;
    }

    .booking-form-container {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .booking-form-header {
      padding: 0 0 12px 0;
    }

    .booking-form-title {
      margin: 0;
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 400;
      color: #1a1a1a;
      letter-spacing: 0.5px;
    }

    /* ----- Progress Steps ----- */
    .progress-steps {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 16px 8px;
      padding: 0 16px;
      position: relative;
    }

    .progress-line {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      height: 1px;
      background: linear-gradient(90deg, rgba(201, 168, 108, 0.25) 0%, rgba(201, 168, 108, 0.08) 100%);
      z-index: 0;
    }

    .step {
      text-align: center;
      opacity: 0.5;
      transition: all 0.3s ease;
      flex: 1;
      position: relative;
      z-index: 1;
    }

    .step.active {
      opacity: 1;
    }

    .step-number {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f0f0f0;
      color: #6a6a6a;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
      font-weight: 600;
      font-size: 12px;
      border: 1px solid #d0d0d0;
    }

    .step.active .step-number {
      background: var(--logo-gradient);
      color: #ffffff;
      border: 2px solid rgba(197, 159, 145, 0.35);
      box-shadow: 0 2px 10px rgba(197, 159, 145, 0.25);
    }

    .step-label {
      font-size: 10px;
      color: #6a6a6a;
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    .step.active .step-label {
      color: #c9a86c;
      font-weight: 600;
    }

    .booking-form-content {
      padding: 0 20px 20px;
    }

    .guest-details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 12px;
    }

    .booking-input-small {
      width: 100%;
      padding: 8px 12px;
      background: var(--bg-card);
      border: 1px solid var(--border-medium);
      border-radius: 6px;
      color: var(--text-primary);
      font-size: 13px;
      transition: all 0.2s ease;
    }

    .booking-input-small:focus {
      outline: none;
      border-color: var(--primary);
    }

    .booking-select {
      width: 100%;
      padding: 8px 12px;
      padding-right: 36px;
      background: var(--bg-card);
      border: 1px solid var(--border-medium);
      border-radius: 6px;
      color: var(--text-primary);
      font-size: 13px;
      appearance: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .booking-select:focus {
      outline: none;
      border-color: var(--primary);
    }

    /* ----- Booking Section ----- */
    .booking-section {
      padding: 40px 20px;
    }

    .booking-section-header {
      margin-bottom: 32px;
    }

    .booking-section-title {
      font-size: 28px;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.95) !important;
    }

    .booking-section-subtitle {
      font-size: 15px;
      color: var(--text-secondary);
    }

    .booking-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .section-card {
      padding: 24px;
    }

    .card-header {
      margin-bottom: 20px;
    }

    .card-title {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .card-subtitle {
      font-size: 13px;
      color: var(--text-muted);
    }

    .landing-calendar-container {
      padding: 16px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: var(--shadow-md);
    }

    .calendar-legend {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      font-size: 11px;
      color: var(--text-primary);
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text-primary);
    }

    .legend-color {
      width: 12px;
      height: 12px;
      border-radius: 3px;
    }

    .legend-color.checkin {
      background: var(--primary);
    }

    .legend-color.checkout {
      background: var(--primary-dark);
    }

    .legend-color.range {
      background: var(--primary-fade-strong);
    }

    .legend-color.booked {
      background: #e74c3c;
    }

    .legend-color.maintenance {
      background: #f39c12;
    }

    .legend-color.available {
      background: #4ade80;
    }

    .calendar-notice {
      margin-top: 12px;
      padding: 10px;
      background: var(--primary-fade-medium);
      border-radius: 8px;
      border: 1px solid var(--border-medium);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--text-primary);
    }

    .calendar-notice-icon {
      color: var(--primary);
    }

    .booking-action {
      margin-top: 20px;
    }

    .btn-book-disabled {
      width: 100%;
      padding: 14px 24px;
      font-size: 15px;
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* ----- QR Code Display ----- */
    .qr-code-display {
      display: none;
      text-align: center;
    }

    .qr-code-image {
      max-width: 220px;
      width: 100%;
      border-radius: 10px;
      border: 2px solid rgba(201, 168, 108, 0.2);
    }

    .qr-code-description {
      margin-top: 10px;
    }

    .qr-code-display .payment-note {
      font-size: 0.75rem;
      color: #6a6a6a;
      text-align: center;
      margin-top: 8px;
    }

    /* ----- Summary Grid ----- */
    .summary-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* ----- Step Headers ----- */
    .step-header {
      margin: 0 0 16px 0;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 400;
      color: #1a1a1a;
      letter-spacing: 0.3px;
    }

    /* ----- Map Iframe ----- */
    .map-iframe {
      border: 0;
      border-radius: 20px;
    }

    /* ----- Review Modal ----- */
    .review-modal {
      display: none;
    }

    /* ----- Footer ----- */
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 500;
      color: #ffffff;
    }

    .footer-logo-light {
      font-weight: 300;
    }

    .footer-tagline {
      margin: 12px 0 0;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-heading {
      color: #fff;
      margin-bottom: 12px;
    }

    .back-top-link {
      color: #b8a08c;
    }

    .footer-copyright {
      margin-top: 16px;
    }

    /* ----- Rating Bar Fill ----- */
    .bar-fill {
      width: 0%;
    }

    /* ----- Success Step Hidden ----- */
    .success-step-hidden {
      display: none;
    }

    /* ----- Booking Step Hidden ----- */
    .booking-step-hidden {
      display: none;
    }


    .payment-history-detail {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .payment-history-detail label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .payment-history-detail span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .no-payment-history {
      text-align: center;
      padding: 60px 20px;
      color: rgba(255, 255, 255, 0.4);
      font-size: 15px;
    }

    /* ----- FAQ Section ----- */
    .faq-section {
      padding: 100px 20px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 32px;
      margin: 0 auto;
      max-width: 1400px;
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 32px;
      padding: 32px;
      box-shadow: var(--shadow-lg);
    }

    .faq-item {
      background: transparent;
      border: 1px solid var(--border-medium);
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
      box-shadow: var(--shadow-sm);
    }
    .faq-item::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(197, 159, 145, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .faq-item:hover {
      background: rgba(232, 221, 208, 0.3);
      border-color: var(--border-medium);
      box-shadow: var(--shadow-md);
    }
    .faq-item:hover::before {
      opacity: 1;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-question-text {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--text-primary);
      font-weight: 500;
      letter-spacing: 0.2px;
      line-height: 1.4;
    }

    .faq-icon {
      color: var(--text-secondary);
      font-size: 16px;
      transition: transform 0.3s ease;
      opacity: 0.8;
    }

    .faq-icon.active {
      transform: rotate(180deg);
      opacity: 1;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-answer.active {
      max-height: 600px;
    }

    .faq-answer p {
      padding: 0 28px 28px;
      margin: 0;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
      font-weight: 300;
    }

    .faq-footer {
      text-align: center;
      margin-top: 40px;
    }

    .btn-view-all-faqs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background: var(--logo-gradient);
      border: none;
      border-radius: 10px;
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      font-family: 'Manrope', sans-serif;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px var(--primary-fade-medium);
    }

    .btn-view-all-faqs:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px var(--primary-fade-strong);
    }

    /* ----- FAQ Page Styles ----- */
    .faq-page-header {
      padding: 120px 20px 60px;
      text-align: center;
      background: var(--bg-secondary);
    }

    .faq-header-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-page-title {
      margin: 0 0 16px;
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.95);
      letter-spacing: 0.5px;
    }

    .faq-page-subtitle {
      margin: 0;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
    }

    .faq-page-content {
      padding: 60px 20px;
    }

    .faq-page-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-category {
      margin-bottom: 48px;
    }

    .faq-category-title {
      margin: 0 0 24px;
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--text-primary);
      letter-spacing: 0.5px;
    }

    .faq-back-home {
      text-align: center;
      padding: 40px 20px;
    }

    .btn-back-home {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background: var(--logo-gradient);
      border: none;
      border-radius: 10px;
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px var(--primary-fade-medium);
    }

    .btn-back-home:hover {
      background: var(--logo-gradient-reverse);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px var(--primary-fade-strong);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-page-title {
        font-size: 28px;
      }

      .faq-page-subtitle {
        font-size: 14px;
      }

      .faq-category-title {
        font-size: 20px;
      }

      .faq-question-text {
        font-size: 14px;
      }

      .faq-answer p {
        font-size: 13px;
      }
    }

    html { overflow-x: hidden; }
    body { min-width: 0; overflow-x: hidden; }
    img, video, iframe { max-width: 100%; }
    input, select, textarea, button { max-width: 100%; }

    @media (max-width: 768px) {
      section { width: 100%; min-width: 0; }
      .section-title,
      .section-header .section-title {
        font-size: clamp(1.8rem, 7vw, 2.35rem);
        line-height: 1.15;
      }
      .hero-content,
      .booking-wrap,
      .section-card,
      .booking-form-container { width: 100%; min-width: 0; }
      .booking-wrap,
      .section-card,
      .booking-form-container { padding: 20px; }
      .booking-grid,
      .guest-details-grid,
      .guest-info-grid,
      .about-grid,
      .location-grid,
      .contact-grid,
      .footer-inner { grid-template-columns: minmax(0, 1fr); }
      .booking-form-content { padding: 0 4px 12px; }
      .progress-steps { margin-inline: 0; padding-inline: 0; }
      .step-label { font-size: 9px; overflow-wrap: anywhere; }
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-inline: 0;
      }
      .gallery-item .cat-tag {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding-inline: 10px;
        overflow-wrap: anywhere;
      }
      .reviews-list { overflow-x: auto; padding-bottom: 8px; }
      .review-card { min-width: min(280px, calc(100vw - 48px)); }
      .faq-floating {
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: calc(100% - 24px);
        max-width: none;
      }
      .faq-panel { border-radius: 18px; }
      .lightbox { padding: 12px; }
      .lightbox img {
        max-width: calc(100vw - 24px);
        max-height: 78vh;
        border-radius: 16px;
      }
    }

    @media (max-width: 480px) {
      .navbar { padding-inline: 12px; }
      .logo { min-width: 0; font-size: 1.15rem; }
      .nav-right { min-width: 0; gap: 8px; }
      .nav-right .btn-primary { padding-inline: 11px; white-space: nowrap; }
      section { padding-inline: 16px; }
      .gallery-grid, .stats-grid { grid-template-columns: 1fr; }
      .calendar-header h4 { font-size: 14px; }
      .calendar-day { font-size: 11px; }
      .day-indicator { display: none; }
      .progress-steps { gap: 4px; }
      .step-number { width: 28px; height: 28px; margin-bottom: 5px; }
      .step-label { font-size: 8px; }
      .action-row { flex-direction: column; align-items: stretch; }
      .action-row button,
      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary,
      .review-modal button { width: 100%; }
      .modal-content, .review-modal {
        width: 100%;
        max-width: 100%;
        padding-inline: 16px;
      }
    }

    @media (max-width: 360px) {
      .nav-right .btn-primary { font-size: 0; padding-inline: 10px; }
      .nav-right .btn-primary i { font-size: 0.8rem; margin: 0; }
      .booking-wrap,
      .section-card,
      .booking-form-container { padding: 16px; }
    }

    @media (max-width: 600px) {
      .booking-form-container {
        overflow: hidden;
      }

      .progress-steps {
        width: 100%;
        min-width: 0;
        margin: 16px 0 22px;
        padding: 0;
        gap: 4px;
      }

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

      .progress-steps .step {
        flex: 1 1 0;
        min-width: 0;
      }

      .progress-steps .step-number {
        position: relative;
        z-index: 1;
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
        font-size: 11px;
      }

      .progress-steps .step-label {
        display: block;
        width: 100%;
        min-height: 2.4em;
        padding: 0 2px;
        font-size: clamp(8px, 2.5vw, 10px);
        line-height: 1.2;
        letter-spacing: 0;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
      }

      .booking-form-content,
      .booking-step,
      .guest-section,
      .rates-container,
      .summary-container {
        min-width: 0;
        max-width: 100%;
      }

      .booking-form-content {
        padding-inline: 0;
      }

      .field-row input,
      .field-row select,
      .field-row textarea,
      .guest-input,
      .special-request-input,
      .special-request-textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }
    }

    @media (max-width: 375px) {
      .progress-steps {
        gap: 1px;
      }

      .progress-steps .step-label {
        font-size: 8px;
        min-height: 2.5em;
      }
    }

    @media (max-width: 600px) {
      .progress-steps .step-number {
        background: #f7f7f7;
        border: 1px solid #d7d7d7;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      }

      .progress-steps .step.active .step-number {
        border: 2px solid rgba(197, 159, 145, 0.45);
        box-shadow: 0 3px 8px rgba(197, 159, 145, 0.22);
      }

      .progress-steps .step-label {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 5px 4px;
        border: 1px solid #e0e0e0;
        border-radius: 7px;
        background: #ffffff;
        color: #6a6a6a;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      }

      .progress-steps .step.active .step-label {
        border-color: rgba(197, 159, 145, 0.45);
        background: #fffaf7;
        color: #9b7b71;
      }
    }

    @media (max-width: 375px) {
      .progress-steps .step-label {
        min-height: 30px;
        padding-inline: 2px;
        border-radius: 6px;
      }
    }

    @media (max-width: 600px) {
      .field-row {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        gap: 6px;
        padding: 6px 0;
      }

      .field-row label {
        max-width: 100%;
        line-height: 1.25;
        overflow-wrap: anywhere;
      }

      .field-row input,
      .field-row select,
      .field-row textarea,
      .field-row .guest-select,
      .field-row .special-request-input,
      .field-row .special-request-textarea {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
      }

      .field-row .guest-age-inputs {
        width: 100%;
        min-width: 0;
      }

      .field-row small {
        max-width: 100%;
        overflow-wrap: anywhere;
        line-height: 1.35;
      }
    }

    @media (max-width: 600px) {
      #booking {
        padding: 32px 12px;
      }

      #booking .booking-form-header {
        width: 100%;
        min-width: 0;
        padding: 0 0 10px;
        border-bottom: 1px solid #ececec;
      }

      #booking .booking-form-title {
        max-width: 100%;
        color: #1a1a1a;
        font-size: clamp(17px, 5vw, 20px);
        line-height: 1.25;
        overflow-wrap: anywhere;
      }

      #booking .booking-section-header {
        margin-bottom: 22px;
      }

      #booking .booking-container,
      #booking .multi-step-booking-form,
      #booking .booking-form-container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      #booking .booking-form-container {
        padding: 14px;
        border-radius: 16px;
      }

      #booking .booking-form-title {
        font-size: 18px;
        line-height: 1.25;
      }

      #booking .booking-form-content {
        padding: 0;
      }

      #booking .two-col,
      #booking .guest-info-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      #booking .guest-section,
      #booking .rates-container,
      #booking .summary-container {
        width: 100%;
        min-width: 0;
        padding: 14px;
        border-radius: 12px;
      }

      #booking .guest-info-column {
        width: 100%;
        gap: 4px;
      }

      #booking .guest-age-inputs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
      }

      #booking .guest-age-group {
        min-width: 0;
      }

      #booking .guest-age-group label {
        min-height: 2.4em;
        font-size: 0.62rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
      }

      #booking .guest-input {
        padding-inline: 8px;
        text-align: center;
      }

      #booking .rate-item {
        align-items: flex-start;
        gap: 8px;
        line-height: 1.3;
      }

      #booking .rate-item .rate-label {
        min-width: 0;
        overflow-wrap: anywhere;
      }

      #booking .rate-item .rate-value {
        flex: 0 0 auto;
        white-space: nowrap;
      }

      #booking .summary-container {
        gap: 4px;
      }

      #booking .summary-row,
      #booking .payment-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        padding: 8px 0;
      }

      #booking .summary-row .label,
      #booking .payment-row .label,
      #booking .summary-row .value,
      #booking .payment-row .value {
        max-width: 100%;
        overflow-wrap: anywhere;
        text-align: left;
      }

      #booking .summary-row.check-in-out {
        gap: 8px;
      }

      #booking .summary-row.check-in-out .line {
        width: 100%;
        gap: 3px;
      }

      #booking .summary-row.total {
        margin-top: 4px;
        padding-top: 10px;
      }

      #booking .payment-section {
        padding: 10px;
        border-radius: 10px;
      }

      #booking .security-deposit {
        align-items: flex-start;
        padding: 10px;
        border-radius: 10px;
        line-height: 1.35;
      }

      #booking .payment-method-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      #booking .payment-option {
        min-height: 44px;
        padding: 10px 12px;
      }

      #booking .qr-code-display {
        padding: 14px;
        border-radius: 12px;
      }

      #booking .qr-code-image {
        width: min(100%, 220px);
        height: auto;
      }

      #booking .terms-content {
        max-width: 100%;
        padding: 14px;
        border-radius: 12px;
      }

      #booking .terms-text,
      #booking .terms-content .faq-answer p {
        font-size: 0.82rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
      }

      #booking .terms-content .faq-question {
        gap: 8px;
        padding: 10px 0;
      }

      #booking .terms-content .faq-question-text {
        min-width: 0;
        overflow-wrap: anywhere;
      }

      #booking .agreement-checkbox {
        align-items: flex-start;
        gap: 8px;
      }

      #booking .agreement-text {
        min-width: 0;
        overflow-wrap: anywhere;
        line-height: 1.35;
      }

      #booking .info-box {
        padding: 12px;
        margin-top: 14px;
      }

      #booking .info-box-content {
        gap: 8px;
      }

      #booking .info-text {
        overflow-wrap: anywhere;
      }

      #booking .action-row {
        align-items: stretch;
        gap: 8px;
        margin-top: 16px;
        padding-top: 12px;
      }

      #booking .action-row .btn-back,
      #booking .action-row .btn-continue {
        width: 100%;
        min-height: 42px;
        padding-inline: 14px;
      }
    }

    @media (max-width: 375px) {
      #booking {
        padding-inline: 8px;
      }

      #booking .booking-form-container {
        padding: 10px;
        border-radius: 14px;
      }

      #booking .booking-form-title {
        font-size: 17px;
      }

      #booking .progress-steps {
        margin-block: 14px 18px;
      }

      #booking .progress-steps .step-label {
        min-height: 28px;
        font-size: 7.5px;
      }

      #booking .guest-section,
      #booking .rates-container,
      #booking .summary-container,
      #booking .terms-content {
        padding: 11px;
        border-radius: 10px;
      }

      #booking .guest-age-inputs {
        gap: 4px;
      }

      #booking .guest-age-group label {
        font-size: 0.58rem;
      }

      #booking .field-row input,
      #booking .field-row select,
      #booking .field-row textarea,
      #booking .guest-input {
        min-height: 34px;
        height: 34px;
        font-size: 0.78rem;
      }

      #booking .field-row textarea,
      #booking .field-row .special-request-textarea {
        height: auto;
        min-height: 70px;
      }

      #booking .summary-row,
      #booking .payment-row {
        font-size: 0.78rem;
      }

      #booking .btn-back,
      #booking .btn-continue {
        font-size: 0.78rem;
      }
    }

    @media (max-width: 600px) {
      #booking #step4 {
        min-width: 0;
      }

      #booking #step4 .step-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ececec;
        font-size: 17px;
        line-height: 1.3;
      }

      #booking #step4 .guest-section {
        gap: 10px;
        background: #fafafa;
      }

      #booking #step4 .guest-info-grid {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        margin: 0;
      }

      #booking #step4 .field-row {
        gap: 5px;
        padding: 5px 0;
      }

      #booking #step4 .field-row label {
        color: #6a6a6a;
        font-size: 0.63rem;
        text-transform: uppercase;
        letter-spacing: 0.35px;
      }

      #booking #step4 .detail-value {
        display: block;
        width: 100%;
        min-width: 0;
        min-height: 34px;
        padding: 8px 10px;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 7px;
        color: #1a1a1a;
        line-height: 1.35;
        overflow-wrap: anywhere;
        box-sizing: border-box;
      }

      #booking #step4 .summary-container {
        background: #f7f7f7;
      }

      #booking #step4 .info-box {
        border-radius: 10px;
      }

      #booking #step4 .action-row {
        margin-top: 14px;
      }
    }