/* Enhanced Hero Section */
.hero-premium {
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(122, 74, 40, 0.4), rgba(196, 154, 108, 0.3));
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Creative Activities Section */
.creative-activities-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f5f2 0%, #ffffff 100%);
}

.activities-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.5rem;
  margin-top: 3rem;
}

.activity-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.activity-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Featured Activity (Large) with Multiple Images */
.activity-item.featured {
  grid-column: span 8;
  grid-row: span 2;
}

.activity-item.featured .activity-image-container {
  height: 350px;
  flex-shrink: 0;
}

/* Multi-image layout for featured activity */
.activity-image-container.multi-image {
  height: 350px;
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  height: 100%;
  padding: 8px;
}

.main-image {
  grid-column: 1;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  height: 100%;
}

.secondary-image {
  grid-column: 2;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  height: 100%;
}

.main-image img,
.secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-item:hover .main-image img,
.activity-item:hover .secondary-image img {
  transform: scale(1.05);
}

/* Medium Activities */
.activity-item.medium {
  grid-column: span 4;
  grid-row: span 1;
}

.activity-item.medium .activity-image-container {
  height: 200px;
  flex-shrink: 0;
}

.activity-item.medium .activity-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Small Activities */
.activity-item.small {
  grid-column: span 4;
  grid-row: span 1;
}

.activity-item.small .activity-image-container {
  height: 150px;
  flex-shrink: 0;
}

.activity-item.small .activity-content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Regular single image container */
.activity-image-container {
  position: relative;
  overflow: hidden;
}

.activity-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-item:hover .activity-image {
  transform: scale(1.1);
}

.activity-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.activity-content h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #7a4a28;
  margin-bottom: 1rem;
}

.activity-item.featured .activity-content h5 {
  font-size: 1.8rem;
}

.activity-item.medium .activity-content h5 {
  font-size: 1.4rem;
}

.activity-item.small .activity-content h5 {
  font-size: 1.2rem;
}

.activity-content p {
  color: #5a3921;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.activity-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.activity-feature {
  background: #f9f5f2;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #7a4a28;
}

/* Creative Gallery Section */
.creative-gallery-section {
  padding: 5rem 0;
  background: white;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Large Gallery Items */
.gallery-item.large {
  grid-column: span 6;
  grid-row: span 2;
  height: 400px;
}

/* Medium Gallery Items */
.gallery-item.medium {
  grid-column: span 4;
  grid-row: span 1;
  height: 250px;
}

/* Small Gallery Items */
.gallery-item.small {
  grid-column: span 2;
  grid-row: span 1;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(122, 74, 40, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

/* Section Titles */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #7a4a28;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  color: #5a3921;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Section Base Styles */
.premium-section {
  padding: 5rem 0;
}

/* Enhanced Booking CTA */
.booking-cta-premium {
  background: linear-gradient(rgba(122, 74, 40, 0.85), rgba(122, 74, 40, 0.95));
  padding: 6rem 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #7a4a28;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #a67c52;
  transform: translateY(-3px);
}

/* Enhanced FAQ Section */
.faq-item-premium {
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-header-premium {
  background: white;
  border: none;
  padding: 1.5rem;
}

.faq-header-premium button {
  font-weight: 600;
  color: #7a4a28;
  font-size: 1.1rem;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-header-premium button:hover {
  color: #d4af37;
}

.faq-header-premium button:not(.collapsed) {
  color: #d4af37;
}

.faq-body-premium {
  background: #f8f9fa;
  border-top: 1px solid #eee;
  padding: 1.5rem;
  line-height: 1.6;
}

/* SEO Content Section */
.seo-content {
  background: #f9f5f2;
  padding: 4rem 0;
}

.seo-content h1 {
  color: #7a4a28;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
}

.seo-content h2 {
  color: #7a4a28;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.8rem;
}

.seo-content h3 {
  color: #a67c52;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.seo-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.seo-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Premium Button Styles */
.btn-premium {
  background: linear-gradient(135deg, #d4af37, #e6c86e);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 154, 108, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 154, 108, 0.4);
  color: white;
}

/* Package Card Styles */
.package-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.package-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.package-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card .card-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #7a4a28;
  margin-bottom: 0.5rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  left: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
}

.whatsapp-tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Hero Section Specific Styles */
.hero-carousel .carousel-item {
  height: 80vh;
  min-height: 600px;
}

.hero-carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.hero-text h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-size: 3.5rem;
}

.hero-text .lead {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-size: 1.5rem;
}

/* Carousel Control Styles */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
}

/* Color Variables */
:root {
  --primary-brown: #7a4a28;
  --secondary-brown: #a67c52;
  --dark-brown: #5a3921;
  --accent-gold: #d4af37;
  --light-gold: #e6c86e;
  --light-brown: #f9f5f2;
}

.text-brown {
  color: var(--primary-brown) !important;
}

/* Responsive Design for Multi-image Layout */
@media (max-width: 1200px) {
  .activities-masonry,
  .gallery-masonry {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .activity-item.featured {
    grid-column: span 6;
  }
  
  .activity-item.medium,
  .activity-item.small {
    grid-column: span 3;
  }
  
  .gallery-item.large {
    grid-column: span 3;
  }
  
  .gallery-item.medium {
    grid-column: span 2;
  }
  
  .gallery-item.small {
    grid-column: span 1;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text .lead {
    font-size: 1.3rem;
  }
  
  .activity-item.featured .activity-image-container.multi-image {
    height: 300px;
  }
  
  .image-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  .premium-section {
    padding: 3rem 0;
  }
  
  .creative-activities-section,
  .creative-gallery-section {
    padding: 3rem 0;
  }
  
  .activities-masonry,
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .activity-item.featured,
  .activity-item.medium,
  .activity-item.small,
  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .activity-item.featured .activity-image-container.multi-image {
    height: 250px;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 4px;
  }
  
  .main-image,
  .secondary-image {
    grid-column: 1;
    border-radius: 8px;
    height: 50%;
  }
  
  .main-image {
    border-radius: 12px 12px 0 0;
  }
  
  .secondary-image {
    border-radius: 0 0 12px 12px;
  }
  
  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small {
    height: 250px;
  }
  
  .floating-element {
    display: none;
  }
  
  .booking-cta-premium {
    padding: 4rem 0;
  }
  
  .hero-carousel .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text .lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .booking-cta-premium {
    padding: 3rem 1rem;
  }
  
  .seo-content {
    padding: 3rem 0;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text .lead {
    font-size: 1.1rem;
  }
  
  .activity-content {
    padding: 1rem !important;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .activity-item.featured .activity-image-container.multi-image {
    height: 200px;
  }
  
  .seo-content h1 {
    font-size: 2rem;
  }
  
  .seo-content h2 {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .scroll-to-top,
  .whatsapp-float,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  .premium-section {
    padding: 2rem 0;
  }
  
  .booking-cta-premium {
    background: #7a4a28 !important;
  }
}