/**
 * attr-details.css - Enhanced Stylesheet for Sri Lankan Destination Detail Page
 * Modern and premium design for AnuVid Ceylon Voyages
 */

/* === GLOBAL STYLES === */

:root {
  --primary-color: #2193b0;
  --primary-dark: #1a7a8e;
  --accent-gold: #e6b400;
  --accent-gold-light: #f8d24c;
  --text-light: #f8f9fa;
  --text-dark: #212529;
  --bg-dark: #121212;
  --bg-card-dark: #1d1d1d;
  --transition-standard: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === HERO SECTION === */
.attr-detail-hero-wrapper {
  position: relative;
  height: 85vh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
}

.attr-detail-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
  z-index: 1;
  filter: brightness(0.95);
}

.attr-detail-hero-wrapper:hover .attr-detail-hero-image {
  transform: scale(1.05);
}

.attr-detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.attr-detail-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8rem 0 6rem;
  z-index: 3;
}

.attr-detail-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.2s ease;
  line-height: 1.1;
  font-size: 4.5rem;
  letter-spacing: -1px;
  /* Updated title gradient to be more golden */
  background: linear-gradient(120deg, #f8d24c, #e6b400);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.attr-detail-category {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.attr-detail-location {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1.2s ease;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}

.attr-detail-location i {
  color: var(--accent-gold);
  margin-right: 0.75rem;
  font-size: 1.2em;
}

.attr-detail-quick-info {
  animation: fadeInUp 1.4s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.attr-detail-quick-info .btn {
  border-radius: 50px;
  padding: 0.7rem 1.3rem;
  transition: var(--transition-standard);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.attr-detail-quick-info .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.attr-detail-quick-info .btn i {
  font-size: 1.1em;
}

/* === BREADCRUMB === */
.attr-breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-item a {
  color: var(--primary-color);
  transition: var(--transition-standard);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent-gold);
}

.breadcrumb-item.active {
  color: #ccc;
}

/* === TRAVEL TIPS SECTION === */
.attr-tip-card {
  background-color: var(--bg-card-dark);
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  transition: var(--transition-standard);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.attr-tip-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.attr-tip-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.attr-tip-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.attr-tip-icon {
  height: 80px;
  width: 80px;
  margin: 0 auto;
  background-color: rgba(230, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-standard);
  margin-bottom: 1.5rem;
}

.attr-tip-icon i.text-primary,
.attr-tip-icon i.text-warning {
  color: var(--accent-gold) !important;
}

.attr-tip-card:hover .attr-tip-icon {
  background-color: var(--accent-gold);
  transform: scale(1.1);
}

.attr-tip-card:hover .attr-tip-icon i {
  color: var(--bg-dark) !important;
}

.attr-tip-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  transition: var(--transition-standard);
}

.attr-tip-card:hover h3 {
  color: var(--accent-gold);
}

/* === CTA SECTION === */
.attr-detail-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
  padding: 6rem 0;
}

.attr-detail-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/slider/pattern-dot.png');
  opacity: 0.1;
  z-index: 1;
}

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

.attr-detail-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.btn-book-now {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-standard);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 8px 15px rgba(248, 180, 0, 0.3);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-book-now:hover {
  background: transparent;
  color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(248, 180, 0, 0.4);
}

.btn-book-now::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.btn-book-now:hover::after {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* === OVERVIEW SECTION === */
.attr-detail-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #e0e0e0;
}

.attr-detail-description p:first-of-type::first-letter {
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 700;
  float: left;
  padding-right: 1rem;
  padding-top: 0.2rem;
  color: var(--accent-gold);
}

.attr-detail-quick-facts {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.attr-detail-quick-facts .card-header {
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
}

.attr-detail-quick-facts .card-body {
  padding: 1.5rem;
}

.attr-detail-quick-facts h4 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.attr-detail-map-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-card-dark);
  transition: var(--transition-standard);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.attr-detail-map-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.attr-detail-map-preview {
  height: 220px;
  background-color: var(--bg-card-dark);
  position: relative;
  overflow: hidden;
}

.attr-detail-map-card .card-body,
.attr-detail-book-card .card-body {
  padding: 1.8rem;
}

.attr-detail-book-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-card-dark);
  transition: var(--transition-standard);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.attr-detail-book-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.attr-detail-book-card .card-header {
  background-color: var(--primary-color);
  padding: 1.25rem 1.5rem;
}

.attr-detail-weather-placeholder {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(33, 147, 176, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
  border-radius: 15px;
}

.attr-detail-weather-temp {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: linear-gradient(to right, #fff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.attr-detail-weather-desc {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #ccc;
  font-weight: 500;
}

.attr-detail-weather-info {
  color: #aaa;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* === THINGS TO SEE/DO SECTION === */
/* Ensure consistent background for all attraction sections */
#things-to-see,
#things-to-do,
#hiking-trails {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.attr-thing-card, .attr-trail-card {
  position: relative;
  padding: 3rem 2.5rem;
  border-radius: 15px;
  background-color: var(--bg-card-dark);
  transition: var(--transition-standard);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #e0e0e0; /* Ensuring text color is visible */
}

.attr-thing-card::before, .attr-trail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--accent-gold);
  transition: height 0.5s ease;
}

.attr-thing-card:hover::before, .attr-trail-card:hover::before {
  height: 100%;
}

.attr-thing-card:hover, .attr-trail-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Added attractive icon styling instead of images */
.attr-thing-icon, .attr-activity-icon {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  background-color: rgba(230, 180, 0, 0.1);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-standard);
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(230, 180, 0, 0.15);
}

.attr-thing-card:hover .attr-thing-icon,
.attr-thing-card:hover .attr-activity-icon {
  transform: translateY(-10px) scale(1.1);
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.attr-thing-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(33, 147, 176, 0.3);
  z-index: 2;
  transition: var(--transition-standard);
}

.attr-thing-card:hover .attr-thing-number {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.attr-thing-title, .attr-trail-title {
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  transition: var(--transition-standard);
}

.attr-thing-card:hover .attr-thing-title,
.attr-trail-card:hover .attr-trail-title {
  color: var(--accent-gold);
}

.attr-trail-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-standard);
}

.attr-trail-card:hover .attr-trail-icon {
  transform: translateY(-10px);
}

/* Badge styling for hiking trails */
.attr-tip-card .badge.bg-warning {
  background-color: var(--accent-gold) !important;
  color: var(--bg-dark) !important;
}

/* Enhanced section divider */
.section-divider {
  margin: 2rem 0;
  position: relative;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

/* Section icon styling */
.section-icon {
  margin-right: 0.75rem;
  color: var(--accent-gold);
  background-color: var(--bg-dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.section-title:hover .section-icon {
  transform: rotate(15deg);
}

/* Make sure all sections use consistent spacing */
.attr-detail-things,
.attr-detail-hiking {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* === MAP SECTION === */
.attr-detail-map-container {
  height: 500px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.attr-map-popup {
  text-align: center;
}

.attr-map-popup h5 {
  margin-bottom: 0.3rem;
  color: #333;
}

/* === PHOTO GALLERY SECTION === */
.gallery-item {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-standard);
  position: relative;
  aspect-ratio: 1/1;
}

.gallery-item.portrait {
  aspect-ratio: 2/3;
}

.gallery-item.landscape {
  aspect-ratio: 3/2;
}

.gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* === SECTION TITLES === */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  /* Updated to ensure section titles are visible on all backgrounds */
  color: #fff;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-gold);
  transition: width 0.4s ease;
}

.section-title:hover::after {
  width: 100%;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

/* === BLOCKQUOTE FOR DESCRIPTION === */
.attr-detail-description blockquote {
  padding: 2.5rem 2.5rem 2.5rem 4rem;
  margin: 3rem 0;
  background-color: rgba(33, 147, 176, 0.05);
  border-left: 5px solid var(--accent-gold);
  font-style: italic;
  position: relative;
  border-radius: 0 15px 15px 0;
}

.attr-detail-description blockquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -1rem;
  left: 0.8rem;
  color: rgba(248, 180, 0, 0.2);
}

/* === TOUR PACKAGES CARD STYLES === */
#tour-packages-grid .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-standard);
  background-color: var(--bg-card-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

#tour-packages-grid .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Enhanced premium styling for tour packages with consistent images */
#tour-packages-grid .card img {
  height: 220px;
  object-fit: cover;
  transition: var(--transition-standard);
  filter: brightness(0.9);
}

#tour-packages-grid .card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* Add gradient overlay for tour cards */
#tour-packages-grid .card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card-dark) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#tour-packages-grid .card:hover::after {
  opacity: 1;
}

#tour-packages-grid .badge {
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#tour-packages-grid .card-body {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(33, 147, 176, 0.05) 0%, rgba(24, 24, 24, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

#tour-packages-grid .card-footer {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.8rem;
  position: relative;
  z-index: 2;
}

#tour-packages-grid .btn {
  border-radius: 50px;
  transition: var(--transition-standard);
  padding: 0.6rem 1.2rem;
}

#tour-packages-grid .btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Premium pricing display for tour packages */
.tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-standard);
}

#tour-packages-grid .card:hover .tour-price {
  background-color: #fff;
  transform: scale(1.1);
}

/* === LOADING & ERROR STYLES === */
.attr-loading-overlay {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.attr-loading-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.25rem;
  color: var(--accent-gold);
}

.attr-error-message {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Additional premium animations */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(230, 180, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(230, 180, 0, 0.8);
  }
}

/* === LIGHT THEME ADJUSTMENTS === */
body.light-theme .attr-thing-icon,
body.light-theme .attr-activity-icon {
  background-color: rgba(230, 180, 0, 0.1);
  color: var(--accent-gold);
}

body.light-theme {
  --bg-dark: #f8f9fa;
  --bg-card-dark: #ffffff;
  --text-light: #212529;
}

body.light-theme .attr-detail-hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

body.light-theme .attr-thing-card,
body.light-theme .attr-trail-card,
body.light-theme .attr-tip-card,
body.light-theme .attr-detail-quick-facts,
body.light-theme .attr-detail-map-card,
body.light-theme .attr-detail-book-card,
body.light-theme #tour-packages-grid .card {
  background-color: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .attr-detail-description {
  color: #555;
}

body.light-theme .section-title {
  color: #333;
}

body.light-theme .attr-thing-title,
body.light-theme .attr-trail-title {
  color: #333;
}

body.light-theme #things-to-see {
  background-color: #f0f0f0;
}

body.light-theme .attr-detail-weather-placeholder {
  background: linear-gradient(135deg, rgba(33, 147, 176, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
}

body.light-theme .attr-detail-weather-temp {
  background: linear-gradient(to right, #333, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

body.light-theme .attr-detail-weather-desc {
  color: #666;
}

body.light-theme #tour-packages-grid .card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Light theme adjustments for premium sections */
body.light-theme .attr-tip-card {
  background-color: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .section-icon {
  background-color: #f8f9fa;
}

body.light-theme .attr-tip-icon {
  background-color: rgba(230, 180, 0, 0.1);
}

body.light-theme .attr-tip-card:hover .attr-tip-icon i {
  color: var(--bg-dark) !important;
}

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 1199.98px) {
  .attr-detail-title {
    font-size: 3.5rem;
  }
  
  .attr-detail-cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .attr-detail-hero-wrapper {
    height: 70vh;
    min-height: 500px;
  }
  
  .attr-detail-title {
    font-size: 3rem;
  }
  
  .attr-detail-map-container {
    height: 400px;
  }
  
  .attr-detail-cta h2 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .attr-thing-card, .attr-trail-card {
    padding: 2.5rem 2rem;
  }
  
  .attr-thing-icon, .attr-activity-icon {
    width: 80px;
    height: 80px;
    font-size: 2.8rem;
  }
  
  .attr-tip-icon {
    width: 70px;
    height: 70px;
  }
  
  .attr-tip-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .attr-detail-hero-wrapper {
    height: 60vh;
    min-height: 400px;
  }
  
  .attr-detail-title {
    font-size: 2.5rem;
  }
  
  .attr-detail-location {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .attr-detail-description p:first-of-type::first-letter {
    font-size: 3rem;
  }
  
  .attr-detail-map-container {
    height: 350px;
  }
  
  .attr-tip-card {
    padding: 1.8rem 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .attr-tip-icon {
    width: 60px;
    height: 60px;
  }
  
  .attr-detail-cta h2 {
    font-size: 1.8rem;
  }
  
  .btn-book-now {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    margin-bottom: 2rem;
  }
  
  .attr-thing-card, .attr-trail-card {
    padding: 2rem 1.5rem;
  }
  
  .attr-thing-icon, .attr-activity-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .tour-price {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .attr-detail-things,
  .attr-detail-hiking {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 575.98px) {
  .attr-detail-hero-wrapper {
    height: 50vh;
    min-height: 350px;
  }
  
  .attr-detail-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .attr-detail-location {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .attr-detail-quick-info .btn {
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .attr-detail-cta {
    padding: 3rem 0;
  }
  
  .attr-detail-cta h2 {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .attr-thing-card, .attr-trail-card {
    padding: 1.5rem;
  }
  
  .attr-thing-icon, .attr-activity-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  
  .attr-detail-weather-temp {
    font-size: 2.2rem;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .tour-price {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
    top: 10px;
    right: 10px;
  }
  
  #tour-packages-grid .badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
    top: 10px;
    left: 10px;
  }
  
  .attr-tip-icon {
    width: 50px;
    height: 50px;
  }
  
  .attr-tip-card {
    padding: 1.5rem 1rem;
  }
  
  .attr-detail-things,
  .attr-detail-hiking {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}