/* ---------- MODAL STYLES ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-container {
  background: var(--gray-800);
  /* border-radius: 16px; */
  box-shadow: var(--shadow-2xl);
  /* max-width: 600px; */
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--glass-border);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--gray-700);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray-300);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gray-700);
  color: var(--white);
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 2rem;
  border-top: 1px solid var(--gray-700);
}

/* Booking Summary */
#bookingSummary {
  background: var(--gray-700);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-500);
}

.booking-summary-row:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
}

.booking-summary-row .label {
  color: var(--gray-300);
}

.booking-summary-row .value {
  color: var(--white);
}

/* Booking Modal Layout */
.booking-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.site-details-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.booking-site-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.site-info-panel {
  background: var(--gray-900);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--gray-800);
}

.site-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}


.site-info-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.site-info-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.detail-value {
  color: var(--white);
  font-weight: 500;
}

.site-amenities-section h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.site-amenities-list {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
}

.payment-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-summary-compact {
  background: var(--gray-900);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--gray-800);
}

.summary-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.booking-summary-compact .booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-800);
}

.booking-summary-compact .booking-summary-row:last-child {
  border-bottom: none;
}

.booking-summary-compact .label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.booking-summary-compact .value {
  color: var(--white);
  font-weight: 500;
}

.total-row {
  /* background: rgba(255, 107, 53, 0.1); */
  padding: 0.75rem;
  /* border-radius: 8px; */
  margin: 0.5rem 0;
  /* border: 1px solid rgba(255, 107, 53, 0.3); */
}

.total-amount {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Responsive Booking Modal */
@media (max-width: 968px) {
  .booking-modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-details-panel {
    gap: 1rem;
  }

  .booking-site-image {
    height: 150px;
  }

  .site-info-panel {
    padding: 1rem;
  }

  .site-info-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .modal-container {
    margin: 1rem;
    width: calc(100% - 2rem);
    max-width: none;
  }

  .booking-modal-grid {
    gap: 1rem;
  }

  .site-details-panel {
    gap: 1rem;
  }

  .booking-site-image {
    height: 120px;
  }

  .site-info-panel {
    padding: 1rem;
  }

  .site-info-title {
    font-size: 1.2rem;
  }


  .booking-summary-compact {
    padding: 1rem;
  }

  .summary-title {
    font-size: 1.1rem;
  }
}

/* Payment Form */
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  padding: 1.5rem;
}

.form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1.5rem 0;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-500);
  border-radius: 8px;
  background: var(--gray-800);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(167, 201, 87, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-500);
}

/* Terms Section */
.terms-section {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  cursor: pointer;
  line-height: 1.5;
}

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

.checkbox-label a {
  color: var(--accent);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* ---------- PARK MAP STYLES ---------- */
.park-map-container {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-700);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.map-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.park-map-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.map-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
}

.park-map-container .row-label {
  font-weight: 600;
  color: var(--accent);
  min-width: 2rem;
  text-align: left;
  font-size: 1.1rem;
}

.park-map-container .sites-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: no-wrap;
  justify-content: flex-start;
}

.map-site {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--gray-600);
  border: 2px solid var(--gray-500);
  transition: var(--transition);
  cursor: default;
}

.map-site:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.map-site.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  /* box-shadow: 0 0 12px rgba(255, 107, 53, 0.4); */
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  }
}

.map-legend {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-600);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.legend-item .map-site {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  margin: 0;
}

.legend-item .map-site.available {
  background: var(--gray-600);
  border-color: var(--gray-500);
  cursor: default;
}

.legend-item .map-site.selected {
  background: var(--accent);
  border-color: var(--accent);
  animation: none;
  box-shadow: none;
}

/* ---------- GLOBAL ---------- */

/* ---------- GLOBAL STYLES FROM INDEX.HTML ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
:root {
  --primary: #386641; /* Forest Green */
  --primary-dark: #2b5033;
  --secondary: #6a994e; /* Lighter Green */
  --accent: #a7c957; /* Light vibrant green/yellow */
  --dark: #f9faf1; /* Page Background */
  --gray-900: #ffffff;
  --gray-800: #f8f9fa;
  --gray-700: #e9ecef;
  --gray-500: #adb5bd;
  --gray-300: #6c757d;
  --gray-100: #495057;
  --white: #212529; /* Text Color */
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 40px 80px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 80px rgba(56, 102, 65, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}

/* ---------- BACKGROUND & PARTICLES FROM INDEX.HTML ---------- */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg, var(--gray-800) 0%, var(--gray-900) 100%);
  overflow: hidden;
}
.bg-animation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(56, 102, 65, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(106, 153, 78, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(167, 201, 87, 0.05) 0%, transparent 50%);
  animation: gradientShift 20s ease-in-out infinite;
}
@keyframes gradientShift {
  0%,
  100% {
    transform: rotate(0) scale(1);
  }
  33% {
    transform: rotate(120deg) scale(1.1);
  }
  66% {
    transform: rotate(240deg) scale(0.9);
  }
}

/* ---------- WRAPPER FROM INDEX.HTML ---------- */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* ---------- NAVIGATION FROM INDEX.HTML ---------- */
header {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(251, 251, 251, 0.95);
  box-shadow: var(--shadow-lg);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
div#auth-buttons {
  gap: 16px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.logo::before {
  content: '⛰️';
  font-size: 1.8rem;
}
.nav-center {
  display: flex;
  gap: 3rem;
}
.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::before {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* User Menu Styles from INDEX.HTML */
/* .user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition);
} */

/* .user-info:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
} */

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 0;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  min-width: 180px;
  z-index: 1001;
}

.user-info:hover + .user-dropdown,
.user-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-link:hover {
  background: var(--gray-800);
  color: var(--primary);
  transform: translateX(5px);
}

/* ---------- BUTTONS FROM INDEX.HTML ---------- */
.btn {
  padding: 1rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-glass {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--gray-900);
  box-shadow: 0 4px 24px rgba(56, 102, 65, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(56, 102, 65, 0.4);
}

/* ---------- HERO FROM INDEX.HTML ---------- */
.hero-section {
  margin-top: 70px;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 3rem 0;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.hero-content {
  animation: heroFadeIn 1s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.hero-badge::before {
  content: '✨';
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero visual from INDEX.HTML */
.hero-visual {
  position: relative;
  height: 60vh;
  max-height: 600px;
  min-height: 450px;
  animation: heroSlideIn 1s ease-out 0.3s both;
}
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.hero-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}
.hero-image-container:hover .hero-image {
  transform: scale(1);
}
/* Floating cards from INDEX.HTML */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  75% {
    transform: translateY(5px) rotate(-1deg);
  }
}
.floating-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.rating-card {
  top: 20%;
  right: 20px;
}
.feature-mini-card {
  bottom: 20%;
  left: 20px;
  animation-delay: 2s;
}
.floating-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.star {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ---------- SEARCH PANEL FROM INDEX.HTML ---------- */
@keyframes searchSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-panel {
  /* margin-top: -80px; */
  position: relative;
  z-index: 100;
  animation: searchSlide 0.8s ease-out 0.6s both;
}
.search-container {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}
.search-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%); */
  /* animation: shimmer 3s infinite; */
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  align-items: end;
}
.search-field {
  position: relative;
}
.search-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-field input,
.search-field select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}
.search-field input:focus,
.search-field select:focus {
  background: var(--gray-900);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 102, 65, 0.1);
  transform: translateY(-2px);
}
.search-field input::placeholder {
  color: var(--gray-500);
}
/* icons from INDEX.HTML */
.icon-input {
  position: relative;
}
.icon-input::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: 0.5;
  pointer-events: none;
}
.calendar::before {
  content: '📅';
}
.guests::before {
  content: '👥';
}
.icon-input input {
  padding-left: 3.5rem;
}
.search-btn-main {
  min-width: 180px;
  height: 56px;
  font-size: 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.search-btn-main::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s;
}
.search-btn-main:hover::after {
  transform: translate(-50%, -50%) scale(2);
}
.search-btn-main span {
  position: relative;
  z-index: 1;
}

/* ---------- FEATURES FROM INDEX.HTML ---------- */
.features-section {
  padding: 8rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 102, 65, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(56, 102, 65, 0.3);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(56, 102, 65, 0.3);
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-300);
}

/* Gallery section removed */

/* ---------- ATTRACTIONS SECTION ---------- */
.attractions-section {
  padding: 8rem 0;
  background: var(--gray-900);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.attraction-card {
  background: var(--gray-800);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.attraction-image {
  height: 200px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05);
}

.attraction-content {
  padding: 2rem;
}

.attraction-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.attraction-description {
  color: var(--gray-300);
  line-height: 1.6;
  margin: 0;
}

/* ---------- TESTIMONIALS FROM INDEX.HTML ---------- */
.testimonials-section {
  padding: 8rem 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
}
.testimonial-card {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: var(--gray-800);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 0 20px rgba(56, 102, 65, 0.3);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* ---------- CTA FROM INDEX.HTML ---------- */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}
.cta-container {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}
.cta-btn {
  background: var(--gray-900);
  color: var(--primary);
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ---------- FOOTER FROM INDEX.HTML ---------- */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: transparent;
  backdrop-filter: blur(20px);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-description {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-info p strong {
  color: var(--primary);
  font-weight: 600;
}

.contact-info a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(56, 102, 65, 0.3);
}
.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 10px;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-300);
  font-size: 0.875rem;
}

/* ---------- LOADER FROM INDEX.HTML ---------- */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s;
}
.loader {
  width: 60px;
  height: 60px;
  position: relative;
}
.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-circle:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: var(--secondary);
  animation-duration: 0.8s;
  animation-direction: reverse;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- SEARCH RESULTS FROM INDEX.HTML ---------- */
.search-results-section {
  padding: 4rem 0;
  position: relative;
}

.sort-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.sort-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sort-select {
  padding: 0.75rem 1rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
  min-width: 200px;
}

.sort-select:focus {
  background: var(--gray-900);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 102, 65, 0.1);
  transform: translateY(-2px);
}

.sort-select option {
  background: var(--gray-900);
  color: var(--white);
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.site-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(56, 102, 65, 0.3);
}

.site-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.site-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.site-card:hover .site-image {
  transform: scale(1.05);
}


.site-content {
  padding: 2rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.site-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.site-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.site-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-detail-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.site-amenities {
  margin-bottom: 1.5rem;
}

.site-amenities-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.site-amenities-list {
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.4;
}

.site-status {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.status-available {
  background: rgba(106, 153, 78, 0.2);
  color: var(--secondary);
}

.status-occupied {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.site-book-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.site-book-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-300);
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.no-results p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ---------- RESPONSIVE FROM INDEX.HTML ---------- */
@media (max-width: 1200px) {
  .wrapper {
    padding: 0 2rem;
  }
  h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  .hero-grid {
    gap: 4rem;
  }
}
@media (max-width: 968px) {
  .nav-center {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    height: 500px;
  }
  .floating-card {
    display: none;
  }
  .search-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .search-btn-main {
    grid-column: 1/-1;
    width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  h1 {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .sites-grid {
    grid-template-columns: 1fr;
  }
  .sort-controls {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .sort-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .sort-select {
    width: 100%;
    min-width: unset;
  }
  .gallery-slide {
    height: 300px;
  }
  .cta-container {
    padding: 3rem 2rem;
  }
}

/* ---------- SCROLLBAR & REVEAL FROM INDEX.HTML ---------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ---------- ACCOUNT.HTML STYLES ---------- */
/* ---------- GLOBAL ---------- */
:root {
  --primary: #386641; /* Forest Green */
  --primary-dark: #2b5033;
  --secondary: #6a994e; /* Lighter Green */
  --accent: #a7c957; /* Light vibrant green/yellow */
  --dark: #fbfbfb; /* Page Background */
  --gray-900: #ffffff;
  --gray-800: #f8f9fa;
  --gray-700: #e9ecef;
  --gray-500: #adb5bd;
  --gray-300: #6c757d;
  --gray-100: #495057;
  --white: #212529; /* Text Color */
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 40px 80px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 80px rgba(56, 102, 65, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}

/* ---------- BACKGROUND & PARTICLES ---------- */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg, var(--gray-800) 0%, var(--gray-900) 100%);
  overflow: hidden;
}
.bg-animation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(56, 102, 65, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(106, 153, 78, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(167, 201, 87, 0.05) 0%, transparent 50%);
  animation: gradientShift 20s ease-in-out infinite;
}

/* ---------- WRAPPER ---------- */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* ---------- NAVIGATION ---------- */
header {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(251, 251, 251, 0.95);
  box-shadow: var(--shadow-lg);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.logo::before {
  content: '⛰️';
  font-size: 1.8rem;
}
.nav-center {
  display: flex;
  gap: 3rem;
}
.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::before {
  width: 100%;
}
.nav-link.active {
  color: var(--white);
}
.nav-link.active::before {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  padding: 1rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-glass {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--gray-900);
  box-shadow: 0 4px 24px rgba(56, 102, 65, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(56, 102, 65, 0.4);
}
.btn-secondary {
  background: var(--gray-800);
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- MAIN CONTENT ---------- */
.main-content {
  margin-top: 70px;
  padding: 4rem 0;
  min-height: calc(100vh - 70px);
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- ACCOUNT SECTIONS ---------- */

.account-content-wrapper {
  width: 100%;
}

/* ===========================================
   ACCOUNT TOP NAVIGATION STYLES
   =========================================== */

.account-top-nav {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  transition: var(--transition);
}

.account-top-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Ensure text content is properly centered when no image */
.user-avatar:not(:has(img)) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.user-email {
  font-size: 0.875rem;
  color: var(--gray-300);
  margin: 0;
}

.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.account-nav li {
  margin: 0;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--gray-300);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.account-nav-link:hover,
.account-nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.account-nav-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.account-content {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

/* Responsive styles for account top navigation */
@media (max-width: 1200px) {
  .account-top-nav {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .user-profile {
    min-width: auto;
    justify-content: center;
  }

  .account-nav {
    justify-content: center;
    gap: 0.25rem;
  }

  .account-nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .account-top-nav {
    padding: 1rem;
  }

  .user-profile {
    justify-content: flex-start;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .user-name {
    font-size: 1.1rem;
  }

  .account-nav {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }

  .account-nav li {
    width: 100%;
  }

  .account-nav-link {
    justify-content: center;
    padding: 0.75rem;
  }

  .account-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .account-top-nav {
    padding: 0.75rem;
  }

  .user-profile {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .user-avatar {
    margin: 0;
  }

  .user-name {
    font-size: 1rem;
  }

  .user-email {
    font-size: 0.8rem;
  }

  .account-nav-link {
    padding: 0.6rem;
    font-size: 0.75rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- FORMS ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--gray-900);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 102, 65, 0.1);
  transform: translateY(-2px);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- BOOKING HISTORY ---------- */
.booking-card {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.booking-card:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.booking-id {
  font-size: 0.875rem;
  color: var(--gray-300);
  font-weight: 600;
}

.booking-status {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-confirmed {
  background: rgba(106, 153, 78, 0.2);
  color: var(--secondary);
}

.status-pending {
  background: rgba(167, 201, 87, 0.2);
  color: var(--accent);
}

.status-cancelled {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

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

.booking-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-detail-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .wrapper {
    padding: 0 2rem;
  }
}

@media (max-width: 968px) {
  .nav-center {
    display: none;
  }
  .account-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .account-sidebar {
    position: static;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-content {
    padding: 2rem 0;
  }
  .page-title {
    font-size: 2rem;
  }
  .account-content {
    padding: 2rem;
  }
  .booking-details {
    grid-template-columns: 1fr;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ---------- ADMIN.HTML STYLES ---------- */
/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
:root {
  --primary: #386641; /* Forest Green */
  --primary-dark: #2b5033;
  --secondary: #6a994e; /* Lighter Green */
  --accent: #a7c957; /* Light vibrant green/yellow */
  --dark: #fbfbfb; /* Page Background */
  --gray-900: #ffffff;
  --gray-800: #f8f9fa;
  --gray-700: #e9ecef;
  --gray-500: #adb5bd;
  --gray-300: #6c757d;
  --gray-100: #495057;
  --white: #212529; /* Text Color */
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 40px 80px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 80px rgba(56, 102, 65, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --danger: #dc3545;
  --warning: #ffc107;
  --success: #28a745;
  --info: #17a2b8;
}
body {
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}

/* ---------- BACKGROUND & PARTICLES ---------- */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg, var(--gray-800) 0%, var(--gray-900) 100%);
  overflow: hidden;
}
.bg-animation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(56, 102, 65, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(106, 153, 78, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(167, 201, 87, 0.05) 0%, transparent 50%);
  animation: gradientShift 20s ease-in-out infinite;
}

/* ---------- WRAPPER ---------- */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* ---------- NAVIGATION ---------- */
header {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(251, 251, 251, 0.95);
  box-shadow: var(--shadow-lg);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.logo::before {
  content: '⛰️';
  font-size: 1.8rem;
}
.nav-center {
  display: flex;
  gap: 3rem;
}
.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::before {
  width: 100%;
}
.nav-link.active {
  color: var(--white);
}
.nav-link.active::before {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  padding: 1rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-glass {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--gray-900);
  box-shadow: 0 4px 24px rgba(56, 102, 65, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(56, 102, 65, 0.4);
}
.btn-secondary {
  background: var(--gray-800);
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-danger {
  background: var(--danger);
  color: white;
}
.btn-danger:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ---------- MAIN CONTENT ---------- */
.main-content {
  margin-top: 70px;
  padding: 4rem 0;
  min-height: calc(100vh - 70px);
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- ADMIN SECTIONS ---------- */

/* ===========================================
   ADMIN TOP NAVIGATION STYLES
   =========================================== */

.admin-top-nav {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  transition: var(--transition);
}

.admin-top-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.admin-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.admin-info {
  display: flex;
  flex-direction: column;
}

.admin-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.admin-role {
  font-size: 0.875rem;
  color: var(--gray-300);
  margin: 0;
}

.admin-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.admin-nav li {
  margin: 0;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--gray-300);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.admin-nav-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.admin-content-wrapper {
  width: 100%;
}

.admin-content {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

/* Responsive styles for top navigation */
@media (max-width: 1200px) {
  .admin-top-nav {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .admin-profile {
    min-width: auto;
    justify-content: center;
  }

  .admin-nav {
    justify-content: center;
    gap: 0.25rem;
  }

  .admin-nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .admin-top-nav {
    padding: 1rem;
  }

  .admin-profile {
    justify-content: flex-start;
  }

  .admin-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .admin-name {
    font-size: 1.1rem;
  }

  .admin-nav {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }

  .admin-nav li {
    width: 100%;
  }

  .admin-nav-link {
    justify-content: center;
    padding: 0.75rem;
  }

  .admin-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .admin-top-nav {
    padding: 0.75rem;
  }

  .admin-profile {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .admin-avatar {
    margin: 0;
  }

  .admin-name {
    font-size: 1rem;
  }

  .admin-role {
    font-size: 0.8rem;
  }

  .admin-nav-link {
    padding: 0.6rem;
    font-size: 0.75rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- STATS CARDS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  background: var(--gray-800);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stat-title {
  font-size: 0.875rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stat-icon {
  font-size: 1.5rem;
  opacity: 0.7;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-change {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stat-change.positive {
  color: var(--success);
}

.stat-change.negative {
  color: var(--danger);
}

/* ---------- TABLES ---------- */
.data-table {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.table-header {
  background: var(--gray-800);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.table-actions {
  display: flex;
  gap: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

th {
  background: var(--gray-800);
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

td {
  color: var(--white);
}

tr:hover {
  background: var(--gray-800);
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-active {
  background: rgba(40, 167, 69, 0.2);
  color: var(--success);
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: var(--warning);
}

.status-cancelled {
  background: rgba(220, 53, 69, 0.2);
  color: var(--danger);
}

.status-suspended {
  background: rgba(108, 117, 125, 0.2);
  color: var(--secondary);
}

.status-archived {
  background: rgba(52, 58, 64, 0.2);
  color: var(--dark);
}

/* Amenities Selector */
.amenities-selector {
  margin-top: 0.5rem;
}

.amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: rgba(56, 102, 65, 0.1);
  border: 1px solid rgba(56, 102, 65, 0.3);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.amenity-pill:hover {
  background: rgba(56, 102, 65, 0.2);
  border-color: rgba(56, 102, 65, 0.5);
  transform: translateY(-1px);
}

.amenity-pill.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.amenity-pill.selected:hover {
  background: var(--primary-dark, #386641);
  border-color: var(--primary-dark, #386641);
}

.selected-amenities {
  min-height: 2rem;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.selected-amenities:empty::before {
  content: "No amenities selected";
  color: #6c757d;
  font-style: italic;
}

.selected-amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  margin: 0.125rem;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.selected-amenity-tag .remove-amenity {
  cursor: pointer;
  padding: 0 0.125rem;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.selected-amenity-tag .remove-amenity:hover {
  background: rgba(255, 255, 255, 0.2);
}

.status-confirmed {
  background: rgba(106, 153, 78, 0.2);
  color: var(--secondary);
}

.status-archived {
  background: rgba(108, 117, 125, 0.2);
  color: var(--muted);
}

/* ---------- FORMS ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--gray-900);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 102, 65, 0.1);
  transform: translateY(-2px);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- CHARTS ---------- */
.chart-container {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.chart-header {
  margin-bottom: 2rem;
}

.chart-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.chart-subtitle {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .wrapper {
    padding: 0 2rem;
  }
}

@media (max-width: 968px) {
  .testimonials-track {
    grid-template-columns: 1fr 1fr;
  }
  .nav-center {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .table-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .table-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .testimonials-track {
    grid-template-columns: 1fr;
  }
  .main-content {
    padding: 2rem 0;
  }
  .page-title {
    font-size: 2rem;
  }
  .admin-content {
    padding: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  th,
  td {
    padding: 0.75rem 1rem;
  }
}

/* ---------- USER MENU ---------- */
.user-menu {
  position: relative;
}

.user-menu-toggle {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-weight: 500;
}

.user-menu-toggle:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 0;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
}

.user-menu:hover .user-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 500;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  font-size: 0.95rem;
}

.user-menu-item:hover {
  background: var(--gray-800);
  transform: translateX(5px);
}

.user-menu-item.sign-out:hover {
  background: rgba(220, 53, 69, 0.1);
  color: var(--danger);
}

.menu-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.user-menu-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0.5rem 0;
}

/* Sign-in menu dropdown */
.sign-in-menu {
  position: relative;
  display: inline-block;
}

.sign-in-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sign-in-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.sign-in-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sign-in-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.sign-in-option:hover {
  background: var(--gray-800);
  transform: translateX(5px);
}

.sign-in-option .option-icon {
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sign-in-option .option-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.sign-in-option .option-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.sign-in-option .option-subtitle {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* Sign-in choice modal */
.sign-in-options-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sign-in-choice-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.sign-in-choice-btn:hover {
  background: var(--gray-800);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.sign-in-choice-btn .choice-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gray-800);
  border-radius: 12px;
}

.sign-in-choice-btn:hover .choice-icon {
  background: var(--gray-700);
}

.sign-in-choice-btn .choice-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.sign-in-choice-btn .choice-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
}

.sign-in-choice-btn .choice-subtitle {
  color: var(--gray-400);
  font-size: 0.9rem;
  display: block;
}

.sign-in-choice-btn svg {
  color: var(--gray-500);
  transition: var(--transition);
  flex-shrink: 0;
}

.sign-in-choice-btn:hover svg {
  color: var(--accent);
  transform: translateX(5px);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ---------- LAYOUT.HTML STYLES ---------- */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  background-color: #f9faf1;
  color: #3e2723;
}
.left-detail {
  display: flex;
  width: 75%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-right: 3px solid #8d6e63;
}
#map-container {
  flex: 2;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 730px;
}
#details-container {
  flex: 1;
  padding: 25px;
  background-color: #f5f5dc;
  overflow-y: auto;
}
.rv-spot {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #6b8e23;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  font-weight: 600;
  font-size: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.rv-spot:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  background-color: #556b2f;
}
.rv-spot.selected {
  background-color: #8b4513;
  box-shadow: 0 0 10px rgba(139, 69, 19, 0.7);
  transform: scale(1.2);
}
h2 {
  color: #4e342e;
  border-bottom: 3px solid #8d6e63;
  padding-bottom: 10px;
  text-align: center;
}
#book-now-btn {
  background-color: #6b8e23;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}
#book-now-btn:hover {
  background-color: #556b2f;
  transform: translateY(-3px);
}
#map-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rv-spot.booked {
  background-color: #9E9E9E;
  color: #616161;
  cursor: not-allowed;
}
.rv-spot.booked:hover {
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: #9E9E9E;
}
#book-now-btn:disabled {
  background-color: #adb5bd;
  cursor: not-allowed;
}
#book-now-btn:hover:not(:disabled) {
  background-color: #556b2f;
  transform: translateY(-3px);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #212529;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: #f8f9fa;
  color: #495057;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

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

.form-field label {
  font-weight: 500;
  color: #495057;
  font-size: 0.875rem;
}

.form-field input,
.form-field select {
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #386641;
  box-shadow: 0 0 0 2px rgba(56, 102, 65, 0.1);
}

.form-field input[readonly] {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
}

/* ===========================================
   CALENDAR STYLES
   =========================================== */

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.calendar-controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  min-width: 300px;
  transition: var(--transition);
}

.calendar-controls:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.control-row {
  display: flex;
  gap: 0.75rem;
  align-items: end;
  flex-wrap: wrap;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 140px;
}

.control-group.compact {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.control-group.compact label {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.form-control.compact {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.week-navigation {
  display: flex;
  gap: 0.25rem;
}

.btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  border-radius: 4px;
  min-width: auto;
}

.control-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  padding: 0.75rem 1rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 102, 65, 0.1);
  transform: translateY(-1px);
}

.form-control option {
  background: var(--gray-900);
  color: var(--white);
}

.calendar-container {
  position: relative;
}

.calendar-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--gray-300);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--gray-700);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.calendar-month-header {
  margin-bottom: 2rem;
  text-align: center;
  padding: 2rem 0;
}

.calendar-month-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.02em;
}

.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.calendar-site-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.calendar-site-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 102, 65, 0.3);
}

.calendar-site-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 102, 65, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.calendar-site-card:hover::before {
  opacity: 1;
}

.site-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  flex: 1;
}

.site-info {
  font-size: 0.9rem;
  color: var(--gray-300);
  background: var(--gray-800);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.site-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--gray-900);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
}

.calendar-day-header {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--glass-border);
}

.calendar-day {
  background: var(--gray-900);
  min-height: 120px;
  padding: 0.75rem;
  position: relative;
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.calendar-day:nth-child(7n) {
  border-right: none;
}

.calendar-day:nth-last-child(-n+7) {
  border-bottom: none;
}

.calendar-day.empty {
  background: transparent;
}

.calendar-day.has-booking {
  background: linear-gradient(135deg, rgba(56, 102, 65, 0.15) 0%, rgba(106, 153, 78, 0.1) 100%);
  border-color: rgba(56, 102, 65, 0.3);
}

.calendar-day.has-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.day-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
  display: block;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.booking-item {
  background: var(--gray-800);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.booking-item:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(56, 102, 65, 0.3);
}

.booking-item.status-confirmed {
  border-left: 4px solid var(--success);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.booking-item.status-pending {
  border-left: 4px solid var(--warning);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.booking-item.status-cancelled {
  border-left: 4px solid var(--danger);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  opacity: 0.8;
}

.booking-item.status-completed {
  border-left: 4px solid var(--info);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.booking-guest {
  font-weight: 700;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 0.125rem;
}

.booking-id {
  color: var(--gray-400);
  font-size: 0.7rem;
  font-weight: 500;
}

/* Site Legend */
.site-legend {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.site-legend:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.site-legend h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.legend-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-800);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
}

.legend-item:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}

.site-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.site-name {
  font-weight: 600;
  color: var(--white);
  flex: 1;
}


/* Unified Calendar */
.main-calendar-container {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.main-calendar-container:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.unified-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--gray-900);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
}

.unified-calendar-grid .calendar-day {
  min-height: 140px;
  position: relative;
  transition: var(--transition);
}

.unified-calendar-grid .calendar-day:hover {
  background: var(--gray-800);
}

.unified-calendar-grid .calendar-day.has-booking {
  background: linear-gradient(135deg, rgba(56, 102, 65, 0.1) 0%, rgba(106, 153, 78, 0.08) 100%);
  border-color: rgba(56, 102, 65, 0.2);
}

.unified-calendar-grid .calendar-day.has-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.unified-calendar-grid .day-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
  padding: 0.25rem;
}

/* Updated Booking Items for Unified View */
.unified-calendar-grid .booking-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}

.unified-calendar-grid .booking-item {
  background: var(--gray-800);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.375rem 0.5rem;
  font-size: 0.7rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.unified-calendar-grid .booking-item:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(56, 102, 65, 0.3);
}

.site-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.booking-content {
  flex: 1;
  min-width: 0;
}

.unified-calendar-grid .booking-guest {
  font-weight: 700;
  color: var(--white);
  font-size: 0.7rem;
  margin-bottom: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-details {
  font-size: 0.6rem;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status color overlays */
.unified-calendar-grid .booking-item.status-confirmed {
  border-left: 3px solid var(--success);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
}

.unified-calendar-grid .booking-item.status-pending {
  border-left: 3px solid var(--warning);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
}

.unified-calendar-grid .booking-item.status-cancelled {
  border-left: 3px solid var(--danger);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
  opacity: 0.8;
}

.unified-calendar-grid .booking-item.status-completed {
  border-left: 3px solid var(--info);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
}

.calendar-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
  font-size: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  margin: 2rem 0;
}

.calendar-error {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--danger);
  font-size: 1.25rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  margin: 2rem 0;
}

/* Responsive calendar */
@media (max-width: 768px) {
  .calendar-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .control-group {
    min-width: auto;
  }

  .site-legend {
    padding: 1.5rem;
  }

  .legend-items {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .main-calendar-container {
    padding: 1.5rem;
  }

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

  .unified-calendar-grid .calendar-day {
    min-height: 100px;
    padding: 0.375rem;
  }

  .unified-calendar-grid .day-number {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .unified-calendar-grid .booking-item {
    padding: 0.25rem 0.375rem;
    font-size: 0.65rem;
  }

  .unified-calendar-grid .booking-guest {
    font-size: 0.65rem;
  }

  .booking-details {
    font-size: 0.55rem;
  }

  .site-indicator {
    width: 6px;
    height: 6px;
  }
}

/* Additional responsive breakpoints for calendar containment */
@media (max-width: 1200px) {
  .weekly-calendar-grid {
    min-width: 900px;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
  }

  .weekly-day-header {
    padding: 1rem 0.5rem;
    min-height: 70px;
  }

  .weekly-day-cell {
    min-height: 350px;
    max-height: 450px;
    padding: 0.5rem;
  }
}

@media (max-width: 992px) {
  .calendar-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .calendar-controls {
    min-width: auto;
    width: 100%;
  }

  .control-row {
    justify-content: center;
  }

  .weekly-calendar-grid {
    min-width: 700px;
    grid-template-columns: repeat(7, minmax(90px, 1fr));
  }

  .weekly-day-header {
    padding: 0.75rem 0.25rem;
    min-height: 60px;
  }

  .weekly-day-cell {
    min-height: 300px;
    max-height: 400px;
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  .weekly-calendar-grid {
    min-width: 500px;
    grid-template-columns: repeat(7, minmax(65px, 1fr));
  }

  .weekly-day-header {
    padding: 0.5rem 0.1rem;
    min-height: 45px;
  }

  .weekly-day-cell {
    min-height: 200px;
    max-height: 300px;
    padding: 0.25rem;
  }

  .weekly-booking-item {
    padding: 0.3rem;
    font-size: 0.6rem;
  }

  .weekly-site-indicator {
    width: 10px;
    height: 10px;
  }
}

/* ===========================================
   WEEKLY CALENDAR STYLES
   =========================================== */

/* Weekly Calendar Container */
.weekly-calendar-container {
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 12px;
}

/* Weekly Calendar Grid */
.weekly-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  grid-template-rows: auto 1fr;
  min-height: 600px;
  gap: 0;
  width: 100%;
  min-width: 1050px; /* Ensure minimum width for 7 columns */
}

/* Weekly Day Headers */
.weekly-day-header {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.weekly-day-header:last-child {
  border-right: none;
}

.weekly-day-header:hover {
  background: rgba(255, 255, 255, 0.12);
}

.day-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.day-date {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

/* Weekly Day Cells */
.weekly-day-cell {
  min-height: 500px;
  max-height: 600px;
  padding: 1rem;
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow-y: auto;
  transition: var(--transition);
}

.weekly-day-cell:hover {
  background: rgba(255, 255, 255, 0.06);
}

.weekly-day-cell.today {
  border: 3px solid #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.weekly-day-cell.past {
  background: rgba(128, 128, 128, 0.1);
  opacity: 0.6;
  pointer-events: none;
}

.weekly-day-cell.past .weekly-booking-container {
  opacity: 0.7;
}

.weekly-day-cell:last-child {
  border-right: none;
}

.weekly-day-cell:nth-last-child(-n+7) {
  border-bottom: none;
}

/* Weekly Empty Days */
.weekly-empty-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  opacity: 0.7;
}

/* Weekly Booking Container */
.weekly-booking-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  padding: 0.5rem 0;
}

/* Weekly Booking Items */
.weekly-booking-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 0.5rem;
  position: relative;
}

.weekly-booking-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.weekly-booking-item:hover::before {
  opacity: 1;
}

/* Edit indicator */
.edit-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.weekly-booking-item:hover .edit-indicator {
  opacity: 1;
}

.weekly-booking-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.weekly-booking-item.status-confirmed {
  border-left: 5px solid var(--success);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.weekly-booking-item.status-pending {
  border-left: 5px solid var(--warning);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.weekly-booking-item.status-cancelled {
  border-left: 5px solid var(--danger);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.8;
}

.weekly-booking-item.status-completed {
  border-left: 5px solid var(--info);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Weekly Site Indicator */
.weekly-site-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Weekly Booking Content */
.weekly-booking-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.weekly-booking-guest {
  font-weight: 600;
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.weekly-booking-details {
  color: var(--gray-300);
  font-size: 0.7rem;
  font-weight: 500;
}

.weekly-booking-id {
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(56, 102, 65, 0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(56, 102, 65, 0.3);
}

.weekly-booking-amount {
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* Mobile Responsiveness for Weekly Calendar */
@media (max-width: 1200px) {
  .weekly-calendar-grid {
    min-height: 600px;
  }

  .weekly-day-cell {
    min-height: 400px;
    max-height: 500px;
    padding: 0.75rem;
  }

  .weekly-day-cell.today {
    border: 2px solid #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  }

  .weekly-day-cell.past {
    background: rgba(128, 128, 128, 0.1);
    opacity: 0.6;
    pointer-events: none;
  }

  .weekly-day-cell.past .weekly-booking-container {
    opacity: 0.7;
  }

  .weekly-day-header {
    padding: 1rem 0.5rem;
    min-height: 80px;
  }

  .day-name {
    font-size: 1rem;
  }

  .day-date {
    font-size: 0.8rem;
  }

  .weekly-booking-item {
    padding: 0.6rem;
    gap: 0.6rem;
  }

  .weekly-booking-guest {
    font-size: 0.75rem;
  }

  .weekly-booking-details {
    font-size: 0.65rem;
  }

  .weekly-booking-id {
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
  }

  .weekly-booking-amount {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .weekly-calendar-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .weekly-day-header {
    grid-column: 1;
    border-right: none;
    border-bottom: 2px solid var(--glass-border);
  }

  .weekly-day-cell {
    min-height: 300px;
    max-height: 400px;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }

  .weekly-day-cell.today {
    border: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
  }

  .weekly-day-cell.past {
    background: rgba(128, 128, 128, 0.1);
    opacity: 0.6;
    pointer-events: none;
  }

  .weekly-day-cell.past .weekly-booking-container {
    opacity: 0.7;
  }

  .weekly-booking-item {
    padding: 0.6rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .weekly-booking-content {
    width: 100%;
  }

  .weekly-site-indicator {
    align-self: center;
  }

  .weekly-booking-guest {
    text-align: center;
    font-size: 0.75rem;
  }

  .weekly-booking-details {
    text-align: center;
    font-size: 0.65rem;
  }

  .weekly-booking-id {
    font-size: 0.6rem;
    padding: 0.1rem 0.3rem;
  }

  .weekly-booking-amount {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .calendar-month-header h3 {
    font-size: 2rem;
  }

  .site-legend {
    padding: 1rem;
  }

  .legend-item {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .site-color {
    width: 12px;
    height: 12px;
  }

  .site-name {
    font-size: 0.9rem;
  }


  .unified-calendar-grid .calendar-day {
    min-height: 80px;
    padding: 0.25rem;
  }

  .unified-calendar-grid .day-number {
    font-size: 0.8rem;
  }

  .unified-calendar-grid .booking-item {
    padding: 0.2rem 0.3rem;
    font-size: 0.6rem;
  }

  .unified-calendar-grid .booking-guest {
    font-size: 0.6rem;
  }

  .booking-details {
    font-size: 0.5rem;
  }
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 1rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }

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

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer button {
    width: 100%;
  }

  /* Fix form layout on smaller screens */
  .form-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .form-group {
    min-width: unset;
    width: 100%;
  }
}

/* ===========================================
   NEW ADMIN DASHBOARD STYLES
   =========================================== */

/* Quick Actions Bar */
.quick-actions-bar {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.quick-actions-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 140px;
  justify-content: center;
}

.quick-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.1);
}

.quick-action-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: var(--gray-900);
}

.quick-action-btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.quick-action-btn.secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #6a994e 100%);
  border-color: var(--secondary);
  color: var(--gray-900);
}

.quick-action-btn.secondary:hover {
  background: linear-gradient(135deg, #6a994e 0%, var(--secondary) 100%);
}

.quick-action-btn.info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  border-color: #17a2b8;
  color: white;
}

.quick-action-btn.warning {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  border-color: #ffc107;
  color: var(--gray-900);
}

.action-icon {
  font-size: 1.1rem;
}

.action-text {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Unified Search Container */
.unified-search-container {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.search-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 102, 65, 0.1);
  transform: translateY(-1px);
}

.search-btn {
  padding: 0.75rem 1rem;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  color: var(--gray-900);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-select {
  padding: 0.5rem 0.75rem;
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
  min-width: 120px;
}

.filter-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 102, 65, 0.1);
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: var(--gray-800);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}

/* Site Layout Container */
.site-layout-container {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xl);
}

.site-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-grid-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.legend-color.available {
  background: #28a745;
}

.legend-color.occupied {
  background: #dc3545;
}

.legend-color.maintenance {
  background: #6c757d;
}

/* Site Layout Grid */
.site-layout-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.row-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  min-width: 120px;
  text-align: right;
}

.sites-container {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  flex-wrap: wrap;
}

/* Site Box */
.site-box {
  background: var(--gray-900);
  border: 2px solid var(--gray-700);
  border-radius: 12px;
  padding: 1rem;
  min-width: 140px;
  max-width: 160px;
  flex: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.site-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 102, 65, 0.5);
}

.site-box.available {
  border-color: #28a745;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-box.available:hover {
  border-color: #28a745;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.site-box.occupied {
  border-color: #dc3545;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-box.occupied:hover {
  border-color: #dc3545;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.site-box.maintenance {
  border-color: #6c757d;
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-box.maintenance:hover {
  border-color: #6c757d;
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.site-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.site-type {
  font-size: 0.75rem;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-status {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-box.available .site-status {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.site-box.occupied .site-status {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.site-box.maintenance .site-status {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

.site-booking-info {
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-guest {
  font-weight: 600;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.booking-dates {
  color: var(--gray-300);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.booking-id {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(56, 102, 65, 0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(56, 102, 65, 0.3);
}

.site-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.site-action-btn {
  flex: 1;
  padding: 0.375rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.site-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Quick Stats Grid */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.quick-stat-card {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.quick-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ===========================================
   SITE CALENDAR INTEGRATION STYLES
   =========================================== */

/* Site Calendar Row */
.site-calendar-row {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition);
}

.site-calendar-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.site-calendar-row h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

/* Site Row Calendar */
.site-row-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* Site Calendar Item */
.site-calendar-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--gray-700);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.site-calendar-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 102, 65, 0.5);
}

.site-calendar-item.available {
  border-color: #28a745;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-calendar-item.occupied {
  border-color: #dc3545;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-calendar-item.today.occupied {
  border: 3px solid #ffd700;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-calendar-item.maintenance {
  border-color: #6c757d;
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.site-calendar-item.neutral {
  border-color: #6c757d;
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0.6;
}

.site-calendar-item.today.neutral {
  border: 3px solid #ffd700;
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0.6;
}

/* Site Calendar Header */
.site-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.site-calendar-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.site-calendar-type {
  font-size: 0.75rem;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Site Calendar Status */
.site-calendar-status {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: capitalize;
}

.site-calendar-item.available .site-calendar-status {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.site-calendar-item.occupied .site-calendar-status {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.site-calendar-item.maintenance .site-calendar-status {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

.site-calendar-item.neutral .site-calendar-status {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

/* Site Mini Calendar */
.site-mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mini-day:hover {
  background: rgba(56, 102, 65, 0.3);
  color: var(--white);
}

.mini-day.has-booking {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 700;
  /* box-shadow: 0 0 8px rgba(56, 102, 65, 0.5); */
}

.mini-day.has-booking:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  /* box-shadow: 0 0 12px rgba(56, 102, 65, 0.7); */
}

.mini-day.today {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.mini-day.today.has-booking {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.mini-day.past {
  background: transparent;
  color: var(--gray-500);
  opacity: 0.6;
  pointer-events: none;
}

.mini-day.past:hover {
  background: rgba(128, 128, 128, 0.3);
  color: var(--gray-500);
}

.mini-day.past.has-booking {
  background: rgba(128, 128, 128, 0.3);
}

/* Site Calendar Actions */
.site-calendar-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.site-calendar-btn {
  flex: 1;
  padding: 0.375rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.site-calendar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ===========================================
   BOOKING OVERFLOW STYLES
   =========================================== */

/* Booking Overflow Item */
.booking-overflow-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-top: 0.5rem;
}

.overflow-indicator {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  font-weight: 500;
}

.show-more-btn {
  padding: 0.375rem 0.75rem;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  color: var(--gray-900);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: center;
}

.show-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Booking Collapse Item */
.booking-collapse-item {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.collapse-btn {
  padding: 0.375rem 0.75rem;
  background: var(--gray-700);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.collapse-btn:hover {
  background: var(--gray-600);
  transform: translateY(-1px);
}

/* ===========================================
   DRAG & DROP STYLES
   =========================================== */

/* Drop zone highlighting */
.drop-zone-active {
  background: rgba(56, 102, 65, 0.2) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 20px rgba(56, 102, 65, 0.3) !important;
}

.drop-zone-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(56, 102, 65, 0.1);
  border: 2px dashed var(--primary);
  border-radius: 8px;
  pointer-events: none;
  z-index: 10;
}

/* Dragging states */
.weekly-booking-item[draggable="true"] {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.weekly-booking-item[draggable="true"]:active {
  cursor: grabbing;
}

.weekly-booking-item.dragging {
  opacity: 0.5;
  transform: rotate(2deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Drop target feedback */
.site-box.drop-target {
  border-color: var(--primary) !important;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  transform: scale(1.02);
}

.weekly-day-cell.drop-target {
  background: rgba(56, 102, 65, 0.2) !important;
  border-color: var(--primary) !important;
  transform: scale(1.01);
}

/* Drag feedback text */
.drop-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.drop-feedback::before {
  content: '📅';
  margin-right: 0.5rem;
}

/* Responsive Styles for New Components */
@media (max-width: 1200px) {
  .quick-actions-container {
    gap: 0.75rem;
  }

  .quick-action-btn {
    min-width: 120px;
    padding: 0.6rem 1rem;
  }

  .sites-container {
    gap: 0.5rem;
  }

  .site-box {
    min-width: 120px;
    max-width: 140px;
  }
}

@media (max-width: 968px) {
  .quick-actions-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .quick-action-btn {
    width: 100%;
    max-width: 300px;
  }

  .search-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-input {
    width: 100%;
  }

  .search-filters {
    justify-content: center;
  }

  .site-row {
    flex-direction: column;
    align-items: stretch;
  }

  .row-label {
    text-align: center;
    margin-bottom: 1rem;
  }

  .sites-container {
    justify-content: center;
  }

  .quick-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .unified-search-container {
    padding: 1rem;
  }

  .site-layout-container {
    padding: 1rem;
  }

  .site-box {
    min-width: 100px;
    max-width: 120px;
    padding: 0.75rem;
  }

  .site-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .site-name {
    font-size: 0.9rem;
  }

  .site-type {
    font-size: 0.7rem;
  }

  .site-status {
    font-size: 0.8rem;
  }

  .site-actions {
    flex-direction: column;
    gap: 0.375rem;
  }

  .site-action-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.4rem;
  }

  .quick-stats-grid {
    grid-template-columns: 1fr;
  }

  .quick-stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .site-layout-container {
    padding: 0.75rem;
  }

  .sites-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .site-box {
    flex-shrink: 0;
  }

  /* Site Calendar Responsive */
  .site-calendar-row {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .site-row-calendar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-calendar-item {
    padding: 1rem;
  }

  .site-mini-calendar {
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    padding: 0.25rem;
  }

  .mini-day {
    font-size: 0.7rem;
    padding: 0.25rem;
  }

  .mini-day.today {
    border: 1px solid #ffd700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
    font-weight: bold;
  }

  .mini-day.today.has-booking {
    border: 1px solid #ffd700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
    font-weight: bold;
  }

  .mini-day.past {
    background: rgba(128, 128, 128, 0.3);
    color: var(--gray-500);
    opacity: 0.6;
    pointer-events: none;
  }

  .mini-day.past:hover {
    background: rgba(128, 128, 128, 0.3);
    color: var(--gray-500);
  }

  .site-calendar-actions {
    flex-direction: column;
    gap: 0.375rem;
  }

  .site-calendar-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.4rem;
  }
}

/* ===========================================
   ACCOUNT PAGE FOOTER POSITIONING FIX
   =========================================== */

/* Ensure account page footer appears after content */
.account-page .main-content {
  min-height: auto !important;
  padding-bottom: 0;
}

.account-page footer {
  position: relative;
  margin-top: 4rem;
  clear: both;
}

/* Ensure footer content flows properly */
.account-page .account-content-wrapper {
  position: relative;
}

.account-page .account-content {
  position: relative;
  z-index: 1;
}

/* Mobile responsive footer positioning for account page */
@media (max-width: 768px) {
  .account-page footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
  }

  .account-page .main-content {
    padding: 2rem 0;
  }
}

/* ===========================================
   CANCELLATION MODAL STYLES
   =========================================== */

.cancellation-warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.warning-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cancellation-warning h3 {
  color: var(--danger, #dc3545);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.warning-text {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cancellation-summary {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.cancellation-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-500);
}

.cancellation-summary-row:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--danger, #dc3545);
}

.cancellation-summary-row .label {
  color: var(--gray-300);
}

.cancellation-summary-row .value {
  color: var(--white);
}

.cancellation-policy {
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.cancellation-policy h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.policy-details {
  display: grid;
  gap: 0.75rem;
}

.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-period {
  color: var(--gray-300);
  font-weight: 500;
}

.policy-fee {
  color: var(--danger, #dc3545);
  font-weight: 600;
}

.cancellation-terms {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
