/* ===== Experience Detail Page Styles ===== */

/* Override body for experience detail pages */
body {
  padding-top: 80px;
  background: #0a0a0a;
}

/* ===== Experience Header ===== */
.experience-header {
  min-height: 80vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.experience-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.experience-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.experience-hero-content {
  color: white;
}

.experience-badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.experience-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
}

.experience-tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-weight: 500;
}

.experience-meta-bar {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--accent-500);
  width: 18px;
}

.experience-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-500);
  line-height: 1;
}

.price-range {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.experience-image-gallery {
  position: relative;
}

.main-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(45deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-placeholder {
  text-align: center;
  color: var(--gray-500);
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* ===== Experience Details ===== */
.experience-details {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  position: relative;
}

.experience-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.experience-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ===== New Compact Layout ===== */
.about-section {
  margin-bottom: 2rem;
}

.quick-facts-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.fact-item-horizontal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fact-item-horizontal i {
  color: var(--accent-500);
  font-size: 1.2rem;
  width: 24px;
  flex-shrink: 0;
}

.fact-item-horizontal strong {
  color: white;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.25rem;
}

.fact-item-horizontal span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlights-compact,
.tips-compact,
.info-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-compact,
.tip-item-compact {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-md);
}

.highlight-item-compact i,
.tip-item-compact i {
  color: var(--accent-500);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 20px;
}

.highlight-item-compact h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.highlight-item-compact p,
.tip-item-compact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.info-item-compact {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-item-compact h4 {
  color: var(--accent-500);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-item-compact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.booking-section {
  margin-top: 3rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

.provider-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.provider-header i {
  width: 40px;
  height: 40px;
  background: var(--accent-500);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.provider-header h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.provider-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
}

.contact-info-horizontal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-horizontal .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.contact-info-horizontal .contact-item i {
  color: var(--accent-500);
  width: 12px;
}

.pricing-card {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-lg);
}

.price-display {
  margin-bottom: 0.5rem;
}

.price-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

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

.price-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.booking-benefits-horizontal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-benefits-horizontal .benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.booking-benefits-horizontal .benefit i {
  color: var(--accent-500);
  width: 14px;
}

.section-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.section-card h2 {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.description .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--radius-lg);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--accent-500);
  margin-bottom: 1rem;
}

.highlight-item h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
}

.tip-item i {
  color: #3b82f6;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.tip-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

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

.info-item h4 {
  color: var(--accent-500);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== Sidebar ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: sticky;
  top: 100px;
}

.booking-card h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.provider-info {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

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

.provider-header i {
  width: 50px;
  height: 50px;
  background: var(--accent-500);
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.provider-header h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.provider-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent-500);
  width: 16px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: var(--accent-500);
}

.price-breakdown {
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price-item span:first-child {
  color: rgba(255, 255, 255, 0.7);
}

.price-item .price {
  color: var(--accent-500);
  font-size: 1.8rem;
  font-weight: 700;
}

.price-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.benefit i {
  color: var(--accent-500);
  width: 16px;
}

.quick-facts {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.quick-facts h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.fact-item i {
  color: var(--accent-500);
  width: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.fact-item strong {
  color: white;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

.fact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 50%, #141414 100%);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.reviews-section .experience-container {
  position: relative;
  z-index: 2;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.reviews-summary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.overall-rating {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-500);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rating-stars {
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.rating-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.rating-bar span:first-child {
  color: rgba(255, 255, 255, 0.7);
  min-width: 50px;
}

.rating-bar span:last-child {
  color: rgba(255, 255, 255, 0.7);
  min-width: 30px;
  text-align: right;
}

.bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-500), #ff8c5a);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
}

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

.reviewer-info h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.reviewer-info .review-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.review-rating {
  color: #ffd700;
  font-size: 1rem;
}

.review-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.review-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.review-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.review-action:hover {
  color: var(--accent-500);
}

.add-review-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}

.add-review-form h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.star-rating i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.star-rating i:hover,
.star-rating i.active {
  color: #ffd700;
}

/* ===== Related Experiences ===== */
.related-experiences {
  padding: 4rem 0;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 50%, #141414 100%);
  position: relative;
}

.related-experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 70% 100%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.related-experiences .experience-container {
  position: relative;
  z-index: 2;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.view-more {
  text-align: center;
}

/* ===== Experience CTA ===== */
.experience-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #141414 50%, #1a1a1a 75%, #0a0a0a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.experience-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.experience-cta .experience-container {
  position: relative;
  z-index: 2;
}

.experience-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.experience-cta .cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
  font-size: 1.25rem;
  color: var(--accent-500);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .experience-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .quick-facts-horizontal {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .experience-title {
    font-size: 2.5rem;
  }

  .experience-meta-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .experience-actions {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .quick-facts-horizontal {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .three-column-grid {
    gap: 1rem;
  }

  .booking-grid {
    padding: 1.5rem;
    gap: 1rem;
  }

  .booking-benefits-horizontal {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-summary {
    position: static;
  }
}

@media (max-width: 480px) {
  .experience-container {
    padding: 0 1rem;
  }

  .experience-hero-container {
    padding: 0 1rem;
  }

  .experience-title {
    font-size: 2rem;
  }

  .section-card {
    padding: 1.5rem;
  }

  .booking-card {
    padding: 1.5rem;
  }
}

.experience-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade-in-up { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.experience-list { list-style:none; padding:0; display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:1rem; }
.experience-list li { display:flex; gap:0.75rem; padding:1rem; background:rgba(255,255,255,0.03); border-radius:12px; }
.itinerary-timeline { position:relative; padding-left:1.5rem; border-left:2px solid #ff9933; }
.itinerary-item { position:relative; padding-bottom:1.5rem; }
.itinerary-node { position:absolute; left:-2.1rem; top:5px; width:12px; height:12px; border-radius:50%; background:#ff9933; }
.section-card h3 { margin-bottom: 1.5rem; font-size: 1.4rem; color: #fff; border-left: 4px solid #ff9933; padding-left: 1rem; }
/* Self-guided hero */
.sg-hero-container { position:relative; min-height:70vh; display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; border-radius:0; }
.sg-hero-image-wrapper { position:absolute; inset:0; z-index:0; }
.sg-hero-image { width:100%; height:100%; object-fit:cover; }
.sg-no-image { background:linear-gradient(135deg,#1a0533,#0d1b4b); }
.sg-hero-overlay { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%); }
.sg-hero-content { position:relative; z-index:1; text-align:center; padding:3rem 1.5rem 4rem; max-width:900px; margin:0 auto; }
.sg-hero-badges { display:flex; gap:0.75rem; flex-wrap:wrap; justify-content:center; margin-bottom:1.2rem; }
.badge.sg-free-badge { background:rgba(255,255,255,0.15); color:#fff; border:1px solid rgba(255,255,255,0.3); padding:0.4rem 1rem; border-radius:20px; font-size:0.85rem; font-weight:600; display:inline-flex; align-items:center; gap:0.4rem; }
.sg-hero-meta { display:flex; gap:1.5rem; flex-wrap:wrap; justify-content:center; font-size:0.95rem; color:rgba(255,255,255,0.75); margin-top:0.5rem; }
.sg-hero-meta span { display:flex; align-items:center; gap:0.4rem; }
/* Self-guided visit card */
.sg-visit-section { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.08); border-radius:24px; padding:2.5rem; margin-bottom:2rem; }
.sg-visit-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
@media (max-width:768px) { .sg-visit-grid { grid-template-columns:1fr; gap:2rem; } }
.sg-info-rows { display:flex; flex-direction:column; gap:1rem; }
.sg-info-row { display:flex; gap:1rem; align-items:flex-start; padding:1rem 1.2rem; background:rgba(255,255,255,0.03); border-radius:12px; border:1px solid rgba(255,255,255,0.06); }
.sg-info-row i { font-size:1.2rem; margin-top:0.2rem; flex-shrink:0; }
/* Share buttons */
.sg-share-panel { display:flex; flex-direction:column; }
.sg-share-buttons { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.sg-share-btn { display:flex; align-items:center; justify-content:center; gap:0.5rem; padding:0.9rem 1rem; border-radius:12px; font-weight:600; font-size:0.9rem; cursor:pointer; text-decoration:none; border:none; transition:all 0.2s ease; font-family:inherit; }
.sg-whatsapp { background:#25D366; color:#fff; }
.sg-whatsapp:hover { background:#20b557; transform:translateY(-1px); }
.sg-facebook { background:#1877F2; color:#fff; }
.sg-facebook:hover { background:#145db5; transform:translateY(-1px); }
.sg-twitter { background:#111; color:#fff; border:1px solid rgba(255,255,255,0.15); }
.sg-twitter:hover { background:#222; transform:translateY(-1px); }
.sg-copy { background:rgba(255,255,255,0.08); color:#fff; border:1px solid rgba(255,255,255,0.15); }
.sg-copy:hover { background:rgba(255,255,255,0.15); transform:translateY(-1px); }
@media (max-width:480px) { .sg-share-buttons { grid-template-columns:1fr; } }
