/* 
  معزبك - Ma'zibak 
  Sophisticated Saudi Cultural Tourism Platform
  Color System: Elegant blend of Ministry of Culture & Ministry of Tourism
*/

:root {
  /* Ministry of Culture - Refined Palette */
  --culture-maroon: #8B1B35;
  --culture-coral: #DB4B3E;
  --culture-orange: #FB8B24;
  --culture-red: #EF113A;
  
  /* Ministry of Tourism - Sophisticated Palette */
  --tourism-teal: #34A98B;
  --tourism-jade: #57D4A0;
  --tourism-purple: #7668A6;
  
  /* Neutral Professional Palette */
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #EEEEEE;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
  
  /* Elegant Accents */
  --gold-accent: #D4AF37;
  --white: #FFFFFF;
  
  /* Sophisticated Gradients - Subtle, not childish */
  --gradient-hero: linear-gradient(135deg, var(--tourism-teal) 0%, var(--culture-maroon) 100%);
  --gradient-card-hover: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
  
  /* Shadows - Professional depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

/* Base Styles - Clean & Professional */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--neutral-50);
  color: var(--neutral-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Arabic Font Enhancement - Professional typography */
[lang="ar"] {
  font-family: 'Segoe UI', 'Geeza Pro', Tahoma, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

[lang="ar"] h1, 
[lang="ar"] h2, 
[lang="ar"] h3 {
  font-weight: 600;
}

/* Header - Elegant & Minimal */
.header-gradient {
  background: linear-gradient(135deg, var(--tourism-teal) 0%, var(--tourism-jade) 50%, var(--culture-maroon) 100%);
  position: relative;
  overflow: hidden;
}

.header-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

/* Remove childish animations */
.header-content {
  position: relative;
  z-index: 1;
}

/* Hero Section - Sophisticated & Clear */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

[lang="ar"] .hero-title {
  font-size: 3.75rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  [lang="ar"] .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.6;
}

/* Stats Cards - Clean & Professional */
.stat-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--neutral-200);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--tourism-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* Activity Cards - Elegant & Image-focused */
.activity-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--tourism-jade);
}

/* Image Container - Professional presentation */
.activity-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.activity-image-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
  height: 280px;
}

/* Remove gradient overlays on images - let images speak */
.activity-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.activity-card:hover .activity-image-container::after {
  opacity: 1;
}

/* Badge System - Professional & Subtle */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-verified {
  background: var(--tourism-teal);
  color: var(--white);
}

.badge-category {
  background: var(--neutral-100);
  color: var(--neutral-700);
  border: 1px solid var(--neutral-300);
}

/* Category Pills - Refined interaction */
.category-pill {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1.5px solid var(--neutral-300);
  font-weight: 500;
  font-size: 0.938rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  color: var(--neutral-700);
}

.category-pill:hover,
.category-pill.active {
  background: var(--tourism-teal);
  color: var(--white);
  border-color: var(--tourism-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Buttons - Clean & Professional */
.btn {
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--tourism-teal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--tourism-jade);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--tourism-teal);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Rating System - Gold & Elegant */
.rating {
  color: var(--gold-accent);
  display: flex;
  gap: 0.125rem;
}

.rating-text {
  color: var(--neutral-900);
  font-weight: 600;
  margin: 0 0.375rem;
}

.review-count {
  color: var(--neutral-600);
  font-weight: 400;
}

/* Price Display - Clear & Professional */
.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--culture-maroon);
  line-height: 1;
}

.price-currency {
  font-size: 0.938rem;
  color: var(--neutral-600);
  font-weight: 500;
}

/* Feature Tags - Minimalist */
.feature-tag {
  padding: 0.5rem 1rem;
  background: var(--neutral-100);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--neutral-200);
}

.feature-tag i {
  color: var(--tourism-teal);
}

/* Grid System - Clean layout */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

@media (max-width: 640px) {
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Footer - Professional & Minimal */
.footer-gradient {
  background: linear-gradient(to bottom, var(--neutral-900), var(--neutral-800));
  color: rgba(255, 255, 255, 0.9);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--tourism-jade);
}

/* Scrollbar - Refined */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
  background: var(--tourism-teal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tourism-jade);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Content Sections - Proper spacing */
.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

[lang="ar"] .section-title {
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  font-weight: 400;
}

/* Loading States - Professional */
.skeleton {
  background: linear-gradient(90deg, var(--neutral-200) 25%, var(--neutral-100) 50%, var(--neutral-200) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Remove ALL childish animations */
/* Keep only professional, subtle transitions */

/* Card Content - Well organized */
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-description {
  font-size: 0.938rem;
  color: var(--neutral-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Host Info - Professional display */
.host-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--neutral-200);
}

.host-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neutral-200);
}

.host-name {
  font-size: 0.875rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* Navigation - Clean & Fixed */
.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, var(--tourism-teal) 0%, var(--tourism-jade) 50%, var(--culture-maroon) 100%);
}

/* Remove excessive shadows and glows */
/* Keep design clean and professional */

/* ============================================
   CAROUSEL SECTIONS - Horizontal Scrolling
   ============================================ */

.carousel-container {
  position: relative;
  padding: 0 3rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--neutral-300);
  box-shadow: var(--shadow-lg);
  color: var(--tourism-teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.carousel-btn:hover {
  background: var(--tourism-teal);
  color: white;
  border-color: var(--tourism-teal);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

/* Carousel Card */
.carousel-card {
  flex: 0 0 320px;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  cursor: pointer;
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.carousel-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.carousel-card:hover .carousel-card-image img {
  transform: scale(1.1);
}

/* Carousel Card Badge (for rating) */
.carousel-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.875rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.carousel-card-badge i {
  color: var(--gold-accent);
  font-size: 1rem;
}

/* Verified Badge */
.carousel-card-verified {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(52, 169, 139, 0.95);
  backdrop-filter: blur(10px);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

/* Carousel Card Content */
.carousel-card-content {
  padding: 1.25rem;
}

.carousel-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.carousel-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
}

.carousel-card-location {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-card-location i {
  color: var(--tourism-teal);
}

.carousel-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.carousel-card-rating i {
  color: var(--gold-accent);
}

.carousel-card-rating .review-count {
  color: var(--neutral-600);
}

.carousel-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
}

.carousel-card-price .price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tourism-purple);
}

.carousel-card-price .price-currency {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

/* RTL Support for Carousel */
[dir="rtl"] .carousel-btn-prev {
  right: 0;
  left: auto;
}

[dir="rtl"] .carousel-btn-next {
  left: 0;
  right: auto;
}

[dir="rtl"] .carousel-card-badge {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .carousel-card-verified {
  right: auto;
  left: 1rem;
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 2rem;
  }
  
  .carousel-card {
    flex: 0 0 280px;
  }
  
  .carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* ============================================
   ACTIVITY DETAIL PAGE - Premium Design
   ============================================ */

/* Hero Card Floating on Image */
.detail-hero-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.detail-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--tourism-teal);
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-right: 0.5rem;
}

[dir="rtl"] .detail-category-badge {
  margin-right: 0;
  margin-left: 0.5rem;
}

.detail-verified-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(52, 169, 139, 0.1);
  color: var(--tourism-teal);
  border: 1.5px solid var(--tourism-teal);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
  margin-top: 1rem;
}

.detail-price-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid var(--tourism-teal);
}

/* Content Cards */
.detail-content-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.detail-content-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.detail-section-header i {
  font-size: 1.75rem;
  color: var(--tourism-teal);
}

.detail-section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0;
}

.detail-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--neutral-700);
}

/* Features Grid */
.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--neutral-50);
  border-radius: 0.75rem;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.detail-feature-item:hover {
  background: var(--tourism-teal);
  color: white;
  border-color: var(--tourism-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.detail-feature-item i {
  font-size: 1.25rem;
  color: var(--tourism-teal);
}

.detail-feature-item:hover i {
  color: white;
}

.detail-feature-item span {
  font-weight: 500;
  font-size: 0.938rem;
}

/* Included Items */
.detail-included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--neutral-50);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.detail-included-item:hover {
  background: rgba(52, 169, 139, 0.05);
  transform: translateX(8px);
}

[dir="rtl"] .detail-included-item:hover {
  transform: translateX(-8px);
}

.detail-included-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  background: var(--tourism-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.detail-included-item span {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.6;
}

/* Host Card */
.detail-host-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(52, 169, 139, 0.05) 0%, rgba(139, 27, 53, 0.05) 100%);
  border-radius: 1rem;
  border: 2px solid var(--neutral-200);
}

.detail-host-avatar {
  font-size: 5rem;
  line-height: 1;
}

.detail-host-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.detail-host-verified {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tourism-teal);
  font-weight: 600;
  font-size: 0.938rem;
  margin-bottom: 0.75rem;
}

.detail-host-description {
  font-size: 0.938rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Booking Card - Sticky Sidebar */
.detail-booking-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--tourism-teal);
  position: sticky;
  top: 6rem;
}

.detail-booking-price {
  margin-bottom: 1.5rem;
}

.detail-booking-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--tourism-purple);
  line-height: 1;
}

.detail-booking-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.detail-booking-per-person {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
}

.detail-booking-divider {
  height: 1px;
  background: var(--neutral-200);
  margin: 1.5rem 0;
}

.detail-booking-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-booking-icon-wrapper {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: linear-gradient(135deg, var(--tourism-teal) 0%, var(--tourism-jade) 100%);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.detail-booking-label {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

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

.detail-booking-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--tourism-teal) 0%, var(--tourism-jade) 100%);
  color: white;
  border: none;
  border-radius: 0.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(52, 169, 139, 0.3);
}

.detail-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 169, 139, 0.4);
}

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

.detail-booking-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.detail-booking-note i {
  color: var(--tourism-teal);
}

.detail-share-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: white;
  color: var(--neutral-700);
  border: 2px solid var(--neutral-300);
  border-radius: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.detail-share-btn:hover {
  border-color: var(--tourism-teal);
  color: var(--tourism-teal);
  background: rgba(52, 169, 139, 0.05);
}

/* Responsive Detail Page */
@media (max-width: 1024px) {
  .detail-title {
    font-size: 2rem;
  }
  
  .detail-booking-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .detail-title {
    font-size: 1.75rem;
  }
  
  .detail-hero-card {
    padding: 1.5rem;
  }
  
  .detail-price-badge {
    width: 100%;
    margin-top: 1rem;
  }
  
  .detail-content-card {
    padding: 1.5rem;
  }
  
  .detail-section-header h2 {
    font-size: 1.5rem;
  }
  
  .detail-features-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-host-card {
    flex-direction: column;
    text-align: center;
  }
  
  .detail-booking-amount {
    font-size: 2.5rem;
  }
}
