/* ═══════════════════════════════════════════════════
   PLANS PAGE - Redesigned with Place Integration
   Eaktu Anyarakam Tourism
═══════════════════════════════════════════════════ */

/* ─── Keyframes ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ─── Plans Hero ────────────────────────────────── */
.plans-hero {
  position: relative;
  padding: 140px 0 70px;
  background: var(--dark);
  overflow: hidden;
}
.plans-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=60') center/cover no-repeat;
  opacity: 0.25;
}
.plans-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.plans-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.plans-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Category Filter Bar ───────────────────────── */
#category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  padding: 0 10px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(13,31,23,0.3);
}
.filter-btn.active i {
  color: var(--secondary);
}

/* ─── Plans Grid ────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  border: 1px solid var(--border);
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}
.plan-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.plan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.plan-card:hover .plan-card-image img {
  transform: scale(1.1);
}
.plan-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,23,0.8) 0%, rgba(13,31,23,0.2) 40%, transparent 70%);
}
.plan-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}
.plan-days-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

/* ─── Plan Card Body ────────────────────────────── */
.plan-card-body {
  padding: 22px;
}
.plan-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Place Chips in Card */
.plan-card-places {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.place-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s ease;
}
.place-chip img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.place-chip.more {
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  font-size: 0.72rem;
}
.plan-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.plan-card-meta i {
  color: var(--secondary);
  font-size: 0.9rem;
}
.plan-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.plan-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #1a4a35);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.plan-card:hover .plan-card-cta {
  background: linear-gradient(135deg, var(--secondary), #B8953E);
  color: var(--dark);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════
   PLAN DETAIL VIEW
═══════════════════════════════════════════════════ */
.plan-detail-view {
  max-width: 960px;
  margin: 0 auto;
}
.plan-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}
.plan-back-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(-4px);
}

/* Detail Hero */
.detail-hero {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  margin-bottom: 36px;
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,23,0.9) 0%, rgba(13,31,23,0.4) 50%, rgba(13,31,23,0.1) 100%);
}
.detail-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
}
.detail-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-category {
  background: var(--secondary);
  color: var(--dark);
}
.badge-duration {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}
.badge-places {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}
.detail-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.detail-route {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.detail-route i {
  color: var(--secondary);
}

/* ─── Section Headings ──────────────────────────── */
.section-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading i {
  color: var(--secondary);
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════
   ROUTE STRIP - Visual Place Flow
═══════════════════════════════════════════════════ */
.route-section {
  margin-bottom: 44px;
  padding: 30px;
  background: linear-gradient(135deg, #f8faf9, #eef2f0);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.route-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 12px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
}
.route-strip::-webkit-scrollbar {
  height: 6px;
}
.route-strip::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}
.route-place {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  cursor: pointer;
  animation: slideInRight 0.5s ease forwards;
  opacity: 0;
}
.route-place:hover .route-place-img img {
  transform: scale(1.1);
}
.route-place-img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.route-place:hover .route-place-img {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transform: scale(1.08);
}
.route-place-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.route-place-num {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.route-place-info {
  padding: 0 12px;
  text-align: center;
  min-width: 80px;
}
.route-place-info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  white-space: nowrap;
}
.route-place-info span {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.route-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: var(--secondary);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════
   STEPS (Accordion Itinerary)
═══════════════════════════════════════════════════ */
.plan-steps-container {
  margin-bottom: 40px;
}
.step-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.step-item:hover {
  border-color: rgba(201,168,76,0.5);
}
.step-item.active {
  border-color: var(--secondary);
  box-shadow: 0 4px 24px rgba(201,168,76,0.15);
}
.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--light-bg);
  transition: all 0.3s ease;
  user-select: none;
}
.step-header:hover {
  background: #e8efe9;
}
.step-item.active .step-header {
  background: var(--primary);
  color: var(--white);
}
.step-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.step-item.active .step-number {
  background: var(--secondary);
  color: var(--dark);
}
.step-title {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}
.step-toggle {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.step-item.active .step-toggle {
  transform: rotate(180deg);
}
.step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.step-item.active .step-content {
  max-height: 2000px;
}
.step-body {
  padding: 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.step-body p {
  margin-bottom: 8px;
}

/* Day Places within Steps */
.day-places {
  padding: 16px 20px 20px;
  background: linear-gradient(135deg, #f8faf9, #eef4f0);
  border-top: 1px solid var(--border);
}
.day-places-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.day-places-label i {
  color: var(--secondary);
}
.day-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.day-place-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.day-place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--secondary);
}
.day-place-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.day-place-card:hover img {
  transform: scale(1.08);
}
.day-place-info {
  padding: 10px 12px;
}
.day-place-info h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.day-place-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   EXTRAS SECTION
═══════════════════════════════════════════════════ */
.plan-extras {
  margin-bottom: 40px;
}
.extras-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.extras-section:hover {
  border-color: rgba(201,168,76,0.4);
}
.extras-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--light-bg);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  transition: all 0.3s ease;
  user-select: none;
}
.extras-header:hover {
  background: #e8efe9;
}
.extras-header i.icon {
  color: var(--secondary);
  width: 20px;
  text-align: center;
}
.extras-header .toggle {
  margin-left: auto;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.extras-section.open .extras-header .toggle {
  transform: rotate(180deg);
}
.extras-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.extras-section.open .extras-content {
  max-height: 1000px;
}
.extras-body {
  padding: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.extras-body ul {
  list-style: none;
  padding: 0;
}
.extras-body ul li {
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.extras-body ul li::before {
  content: '\2022';
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════════════ */
.plan-booking-section {
  background: linear-gradient(135deg, #f8faf9, #eef4f0);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border);
}
.booking-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.booking-title i {
  color: var(--secondary);
}
.booking-subtitle {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form .form-group {
  margin-bottom: 18px;
}
.booking-form .form-group.full {
  grid-column: 1 / -1;
}
.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  background: var(--white);
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
  outline: none;
}
.booking-success {
  text-align: center;
  padding: 40px 20px;
}
.booking-success i {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 16px;
}
.booking-success h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.booking-success p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════
   PLACE MODAL
═══════════════════════════════════════════════════ */
.place-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.place-modal-overlay.active {
  display: flex;
}
.place-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.place-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.place-modal-close:hover {
  background: #e53935;
  transform: scale(1.1);
}

/* Place Modal Hero */
.place-modal-hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.place-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,23,0.9) 0%, rgba(13,31,23,0.3) 60%, transparent 100%);
}
.place-modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.place-modal-hero-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.place-modal-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.place-modal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
}
.place-modal-meta i {
  color: var(--secondary);
}

/* Place Modal Body */
.place-modal-body {
  padding: 28px;
}
.place-description {
  margin-bottom: 24px;
}
.place-description h3,
.place-highlights h3,
.place-nearby h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.place-description h3 i,
.place-highlights h3 i,
.place-nearby h3 i {
  color: var(--secondary);
}
.place-description p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Highlights */
.place-highlights {
  margin-bottom: 24px;
}
.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #FDF8EC, #FEF3D9);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(201,168,76,0.3);
}
.highlight-tag i {
  color: var(--secondary);
  font-size: 0.7rem;
}

/* Nearby Places */
.place-nearby {
  margin-bottom: 8px;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.nearby-place-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.nearby-place-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border-color: var(--secondary);
}
.nearby-place-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.nearby-place-card span {
  display: block;
  padding: 8px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Fallback content */
.fallback-content {
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  line-height: 1.8;
}
.empty-state {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  color: var(--secondary);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .plans-hero {
    padding: 120px 0 50px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  #category-filter {
    gap: 6px;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .detail-hero {
    height: 280px;
  }
  .detail-hero-content {
    padding: 24px;
  }
  .detail-hero-content h1 {
    font-size: 1.4rem;
  }
  .route-place-img {
    width: 60px;
    height: 60px;
  }
  .route-place-info h4 {
    font-size: 0.7rem;
  }
  .day-places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }
  .plan-booking-section {
    padding: 24px;
  }
  .place-modal {
    max-height: 95vh;
  }
  .place-modal-hero {
    height: 200px;
  }
  .place-modal-body {
    padding: 20px;
  }
  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-card-image {
    height: 180px;
  }
  .day-places-grid {
    grid-template-columns: 1fr;
  }
  .detail-badges {
    gap: 6px;
  }
  .badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* ═══════════════════════════════════════════════════
   ADMIN STYLES (kept from original)
═══════════════════════════════════════════════════ */
.admin-hero {
  position: relative;
  padding: 140px 0 70px;
  background: var(--dark);
  overflow: hidden;
}
.admin-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.admin-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.admin-hero-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}
.admin-login {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.admin-login h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}
.admin-login .form-group { margin-bottom: 16px; }
.admin-login label { display:block; font-size:0.85rem; font-weight:600; margin-bottom:6px; color:var(--text-dark); }
.admin-login input { width:100%; padding:12px 16px; border:1px solid var(--border); border-radius:var(--radius-sm); font-size:0.92rem; }
.admin-login input:focus { border-color:var(--secondary); box-shadow:0 0 0 3px rgba(201,168,76,0.15); }
.admin-error { color:#e53935; font-size:0.85rem; margin-bottom:12px; display:none; }
.admin-dashboard { display:none; }
.admin-toolbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; flex-wrap:wrap; gap:12px; }
.admin-toolbar h2 { font-family:var(--font-heading); font-size:1.4rem; color:var(--primary); }
.admin-search { padding:10px 18px; border:1px solid var(--border); border-radius:50px; font-size:0.9rem; width:280px; max-width:100%; }
.admin-plans-list { display:grid; gap:16px; }
.admin-plan-item { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-sm); padding:20px; display:flex; align-items:center; gap:20px; transition:var(--transition); }
.admin-plan-item:hover { border-color:var(--secondary); box-shadow:var(--shadow-sm); }
.admin-plan-thumb { width:80px; height:60px; min-width:80px; border-radius:8px; overflow:hidden; background:var(--light-bg); }
.admin-plan-thumb img { width:100%; height:100%; object-fit:cover; }
.admin-plan-info { flex:1; }
.admin-plan-info h4 { font-size:1rem; font-weight:600; color:var(--text-dark); margin-bottom:4px; }
.admin-plan-info .meta { font-size:0.82rem; color:var(--text-muted); }
.admin-plan-actions { display:flex; gap:8px; }
.admin-plan-actions button { padding:8px 16px; border-radius:6px; font-size:0.82rem; font-weight:600; transition:var(--transition); display:flex; align-items:center; gap:5px; }
.btn-edit { background:var(--primary); color:var(--white); }
.btn-edit:hover { background:var(--accent); }
.btn-img { background:var(--secondary); color:var(--dark); }
.btn-img:hover { background:#B8953E; }
@media (max-width:768px) {
  .admin-plan-item { flex-direction:column; align-items:flex-start; }
  .admin-plan-thumb { width:100%; height:140px; }
  .admin-plan-actions { width:100%; }
  .admin-plan-actions button { flex:1; justify-content:center; }
  .admin-toolbar { flex-direction:column; align-items:stretch; }
  .admin-search { width:100%; }
}
