/* Partho Holidays - Detailed Pages & Admin Dashboard Layout Styles */

/* ==========================================
   1. RESORT DETAILS PAGE LAYOUTS
   ========================================== */
.details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Airbnb-style 5-Image Mosaic Gallery */
.mosaic-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 0.75rem;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.main-photo {
  grid-column: span 2;
  grid-row: span 2;
}

/* Sticky Booking Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.booking-sidebar-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.sidebar-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-price-val {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-green);
}

.sidebar-price-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sidebar-info-box {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.sidebar-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Details Sections */
.details-content-box {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.details-content-box h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.details-content-box h3 i {
  color: var(--accent-green);
}

.amenities-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.amenity-detailed-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--text-light);
}

.amenity-detailed-item i {
  color: var(--accent-green);
  font-size: 1rem;
}

.attractions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.attraction-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.attraction-item i {
  color: var(--accent-green);
}

/* Reviews block */
.review-item-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-author {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  color: #FFD700;
  font-size: 0.8rem;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Map frame */
.map-iframe-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border-color);
}

/* ==========================================
   2. TOUR PACKAGE DETAILS PAGE
   ========================================== */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.itinerary-node {
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
}

.itinerary-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: rgba(255,255,255,0.02);
  transition: var(--transition-normal);
}

.itinerary-header:hover {
  background-color: rgba(255,255,255,0.04);
}

.itinerary-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.itinerary-day-badge {
  background-color: var(--accent-green);
  color: var(--bg-tertiary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  text-transform: uppercase;
}

.itinerary-title-text {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-white);
}

.itinerary-icon {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.itinerary-node.active .itinerary-icon {
  transform: rotate(180deg);
}

.itinerary-content {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-light);
  display: none;
}

.itinerary-node.active .itinerary-content {
  display: block;
}

/* Inclusions & Exclusions columns */
.in-ex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.in-ex-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
}

.in-ex-box h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.in-ex-box.inclusions h4 {
  color: #25D366;
}

.in-ex-box.exclusions h4 {
  color: #FF5A5F;
}

.in-ex-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.in-ex-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-light);
}

.in-ex-item i {
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.inclusions .in-ex-item i {
  color: #25D366;
}

.exclusions .in-ex-item i {
  color: #FF5A5F;
}

/* ==========================================
   3. ADMIN DASHBOARD PAGE
   ========================================== */
.admin-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 120px);
}

/* Admin Sidebar */
.admin-sidebar {
  background-color: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-sidebar-header {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  padding: 0 0.75rem;
  margin-bottom: 1rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.admin-nav-item:hover {
  background-color: rgba(255,255,255,0.03);
  color: var(--text-white);
}

.admin-nav-item.active {
  background-color: var(--accent-green);
  color: var(--bg-tertiary);
  font-weight: 600;
}

/* Admin Main Workspace */
.admin-workspace {
  padding: 2.5rem;
  background-color: var(--bg-primary);
  overflow-y: auto;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-page-header h2 {
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}

/* Admin Stats Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.admin-stat-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.admin-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(204,255,43,0.06);
  border: 1px solid rgba(204,255,43,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent-green);
}

.admin-stat-info .stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.admin-stat-info .stat-val {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

/* Admin Tables */
.admin-table-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background-color: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.admin-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--text-light);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background-color: rgba(255,255,255,0.01);
}

/* Action Badges & Status */
.status-badge {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.status-badge.status-new {
  background-color: rgba(204,255,43,0.08);
  color: var(--accent-green);
  border: 1px solid rgba(204,255,43,0.15);
}

.status-badge.status-contacted {
  background-color: rgba(58,166,255,0.08);
  color: #3aa6ff;
  border: 1px solid rgba(58,166,255,0.15);
}

.status-badge.status-confirmed {
  background-color: rgba(37,211,102,0.08);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.15);
}

.admin-actions-cell {
  display: flex;
  gap: 0.5rem;
}

.btn-admin-action {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-normal);
  border: 1px solid rgba(255,255,255,0.08);
  background-color: rgba(255,255,255,0.02);
  color: var(--text-light);
}

.btn-admin-action:hover {
  background-color: var(--accent-green);
  color: var(--bg-tertiary);
  border-color: var(--accent-green);
}

.btn-admin-action.btn-delete:hover {
  background-color: #FF5A5F;
  color: var(--text-white);
  border-color: #FF5A5F;
}

/* Admin CRUD Modals & Forms */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 28, 39, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.admin-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 680px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.admin-modal-overlay.active .admin-modal-box {
  transform: translateY(0);
}

.admin-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
}

.admin-modal-close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-normal);
}

.admin-modal-close-btn:hover {
  color: var(--text-white);
}

.admin-modal-body {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
}

.admin-modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  background-color: rgba(255,255,255,0.01);
}

/* Form Styles inside Admin */
.admin-form-group {
  margin-bottom: 1.25rem;
}

.admin-form-group.half-width {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-form-group label {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.925rem;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
  border-color: var(--accent-green);
  outline: none;
}

/* ==========================================
   4. DESTINATIONS PAGE SPECIFIC
   ========================================== */
.destination-hero {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.destination-hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
}

.destination-hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   5. OTHER LAYOUT IMPROVEMENTS
   ========================================== */
.page-title-banner {
  padding: 9.5rem 0 3.5rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(22, 51, 68, 0.4) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.page-title-banner h1 {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-title-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Left Sidebar Layout (Browse Resorts Page) */
.browse-workspace {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
}

.sidebar-filters-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filter-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section h4 {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  cursor: pointer;
}

.filter-checkbox-item input {
  cursor: pointer;
  accent-color: var(--accent-green);
}

.filter-checkbox-item span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.resorts-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.resorts-results-count {
  font-size: 0.95rem;
  color: var(--text-light);
}

.resorts-results-count strong {
  color: var(--accent-green);
}

/* ==========================================
   6. PREMIUM PACKAGE DETAILS STYLES
   ========================================== */
.package-hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9.5rem 0 4rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.package-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.package-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 28, 39, 0.45) 0%, rgba(22, 51, 68, 0.9) 100%);
  z-index: 1;
}

.package-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.package-hero-content .breadcrumb {
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.hero-header-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.duration-pill {
  background: rgba(204, 255, 43, 0.08);
  color: var(--accent-green);
  border: 1px solid rgba(204, 255, 43, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-destinations {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-ideal-for {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.ideal-label {
  color: var(--text-muted);
}

.ideal-vals {
  color: var(--accent-green);
  font-weight: 600;
}

.hero-price-tag {
  display: inline-flex;
  flex-direction: column;
  background: rgba(10, 28, 39, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  margin-bottom: 2rem;
}

.hero-price-tag .price-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.hero-price-tag .price-val {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
}

.hero-price-tag .price-unit {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
}

/* Day-wise Timeline */
.timeline-container {
  position: relative;
  padding-left: 2rem;
  margin-top: 1.5rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-green) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.25rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green-glow);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
  background: var(--accent-green);
  scale: 1.2;
}

.timeline-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.timeline-item-header:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.timeline-item.active .timeline-item-header {
  background: rgba(204, 255, 43, 0.04);
  border-color: rgba(204, 255, 43, 0.15);
}

.timeline-day {
  background: var(--bg-secondary);
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item.active .timeline-day {
  border-color: rgba(204, 255, 43, 0.3);
  color: var(--accent-green);
}

.timeline-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.timeline-toggle-icon {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.timeline-item.active .timeline-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.timeline-content {
  padding: 1.25rem 1rem 0.5rem 1rem;
  display: none;
}

.timeline-item.active .timeline-content {
  display: block;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Dynamic Pricing System */
.pricing-section-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.pricing-section-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pricing-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-btn.active {
  background: rgba(204, 255, 43, 0.08);
  border-color: var(--accent-green);
  color: var(--accent-green);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(204, 255, 43, 0.05);
}

.pricing-summary-card {
  background: rgba(10, 28, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.pricing-stat {
  display: flex;
  flex-direction: column;
}

.pricing-stat .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.pricing-stat .val {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.pricing-stat.price-per-person .val {
  font-size: 1.85rem;
  color: var(--accent-green);
}

.pricing-stat.total-price .val {
  font-size: 1.85rem;
  color: var(--text-white);
}

/* FAQ Accordion */
.faq-section-wrapper {
  margin-bottom: 2.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  border-color: rgba(204, 255, 43, 0.15);
  background: rgba(204, 255, 43, 0.01);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-white);
}

.faq-icon {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Related Packages */
.related-packages-section {
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

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

/* Sticky Booking Card overrides */
.sticky-booking-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 100px;
}

.sticky-booking-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.sticky-booking-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sticky-booking-summary {
  background: rgba(10, 28, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.summary-row:last-child {
  margin-bottom: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.summary-row.total .val {
  color: var(--accent-green);
  font-size: 1.15rem;
}

.sticky-booking-field {
  margin-bottom: 1.25rem;
}

.sticky-booking-field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.sticky-booking-field input,
.sticky-booking-field select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.sticky-booking-field input:focus,
.sticky-booking-field select:focus {
  border-color: var(--accent-green);
  outline: none;
}

.sidebar-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-contact-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .package-hero-section {
    min-height: auto;
    padding: 4rem 0 3rem 0;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-destinations {
    font-size: 1.1rem;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .pricing-summary-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================
   ADMIN DASHBOARD ADDITIONS (CALENDAR, UPLOAD, TOASTS)
   ========================================== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: rgba(10, 28, 39, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 300px;
}
.toast.active {
  transform: translateX(0);
}
.toast i {
  font-size: 1.1rem;
}
.toast.success {
  border-left: 4px solid var(--accent-green);
}
.toast.success i {
  color: var(--accent-green);
}
.toast.error {
  border-left: 4px solid #FF5A5F;
}
.toast.error i {
  color: #FF5A5F;
}
.toast.warning {
  border-left: 4px solid #ffa500;
}
.toast.warning i {
  color: #ffa500;
}

/* Upload Dropzone styling */
.upload-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 1rem;
}
.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--accent-green);
  background: rgba(204, 255, 43, 0.04);
}
.upload-dropzone i {
  font-size: 2.2rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}
.upload-dropzone p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.upload-dropzone span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.gallery-preview-item {
  position: relative;
  aspect-ratio: 1.2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.gallery-preview-item:hover img {
  opacity: 1;
}
.gallery-preview-item .cover-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--accent-green);
  color: var(--bg-tertiary);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 5;
}
.gallery-preview-item .actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 28, 39, 0.85);
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 5;
}
.gallery-preview-item:hover .actions {
  opacity: 1;
}
.gallery-preview-item .actions button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px;
}
.gallery-preview-item .actions button:hover {
  color: var(--accent-green);
}
.gallery-preview-item .actions button.delete:hover {
  color: #FF5A5F;
}

/* Visual calendar system */
.calendar-layout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.calendar-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.calendar-header h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: #fff;
}
.calendar-header-actions {
  display: flex;
  gap: 0.5rem;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-day-label {
  text-align: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 4px 0;
  letter-spacing: 0.05em;
}
.calendar-day-cell {
  aspect-ratio: 1.1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
  min-height: 52px;
}
.calendar-day-cell:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.calendar-day-cell.selected {
  border-color: var(--accent-green) !important;
  background: rgba(204, 255, 43, 0.03);
}
.calendar-day-cell.other-month {
  opacity: 0.25;
  pointer-events: none;
}
.calendar-day-number {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-white);
}
.calendar-day-status {
  font-size: 0.65rem;
  padding: 1px 4px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 2px;
  line-height: 1.2;
}
.calendar-day-price {
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: auto;
}

.status-avail { background: rgba(37, 211, 102, 0.08); color: #25d366; border: 1px solid rgba(37, 211, 102, 0.15); }
.status-ltd { background: rgba(255, 165, 0, 0.08); color: #ffa500; border: 1px solid rgba(255, 165, 0, 0.15); }
.status-sold { background: rgba(255, 90, 95, 0.08); color: #ff5a5f; border: 1px solid rgba(255, 90, 95, 0.15); }
.status-blocked { background: rgba(255, 255, 255, 0.03); color: var(--text-muted); border: 1px solid rgba(255, 255, 255, 0.05); }

/* Settings panel layout */
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.settings-section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: 16px;
}
.settings-section-card h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.75rem;
}
.settings-section-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Alert logs */
.alerts-card {
  background: rgba(255, 165, 0, 0.03);
  border: 1px solid rgba(255, 165, 0, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.alerts-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #ffa500;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.alerts-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.alerts-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}
.alerts-list-item span.alert-tag {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.activity-log-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}
.activity-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.activity-log-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 0.5rem;
  font-size: 0.85rem;
}
.activity-log-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.activity-log-item .time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Dynamic Itinerary Days Creator in Modals */
.modal-itinerary-builder {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.modal-itinerary-day-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 3fr auto;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
  padding: 10px;
  border-radius: 6px;
}
.modal-itinerary-day-row input, .modal-itinerary-day-row textarea {
  padding: 6px 10px;
  font-size: 0.85rem;
}
.modal-itinerary-day-row button.btn-remove {
  background: rgba(255, 90, 95, 0.1);
  color: #ff5a5f;
  border: 1px solid rgba(255, 90, 95, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
}
.modal-itinerary-day-row button.btn-remove:hover {
  background: #ff5a5f;
  color: #fff;
}


