/* Gallery Style Controls */
.gallery-style-controls {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-gray);
  position: fixed;
  top: 140px; /* Below gallery navigation */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9000;
}

.style-controls-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-style-btn {
  background: var(--white);
  border: 2px solid var(--soft-gold);
  color: var(--deep-green);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.gallery-style-btn:hover {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.gallery-style-btn.active {
  background: var(--soft-gold);
  color: var(--white);
}

.gallery-style-btn i {
  font-size: 1rem;
}

/* Gallery Specific Styles */
.gallery-page-header {
  background: var(--white);
  padding: 4rem 0 2rem;
  text-align: center;
}

.gallery-page-header h1 {
  color: var(--deep-green);
  font-size: var(--font-header-xl);
  margin-bottom: 1rem;
}

.gallery-page-header p {
  font-size: var(--font-subheader);
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Navigation in Header - Fixed Position */
.gallery-navigation-header {
  background: var(--white);
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--soft-gold);
  position: fixed;
  top: 80px; /* Position below main nav */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9500; /* Lower than main nav (10000) but higher than content */
}

.gallery-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-nav-tab {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--soft-gold);
  color: var(--deep-green);
  font-weight: var(--font-medium);
  font-size: var(--font-body-lg);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

.gallery-nav-tab:hover,
.gallery-nav-tab.active {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Gallery page styles */
body.gallery-page,
body.staydine-page {
  background: var(--white); /* Clean white background */
  padding-top: 500px; /* Increased padding to clear style controls too */
}

/* Gallery Sections */
.gallery-section {
  padding: 4rem 2rem;
  background: var(--white);
  width: 100%;
}

/* First gallery section - reduce excessive gap */
.gallery-section:first-of-type {
  margin-top: -150px; /* Pull up even more to reduce the large gap from increased padding */
}

.gallery-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-section h2 {
  font-size: var(--font-header-lg);
  color: var(--deep-green);
  margin-bottom: 1rem;
}

.gallery-section p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* 3x3 Gallery Grid System with 4:3 Aspect Ratio */
.gallery-style-grid .gallery-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 1.5rem;
  margin: 2rem auto 0;
  max-width: 1400px;
}

/* Calculate 4:3 aspect ratio for grid items */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem auto 0;
  max-width: 1400px;
}

/* Gallery items with 4:3 aspect ratio */
.gallery-item {
  aspect-ratio: 4 / 3; /* 4:3 aspect ratio */
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Image System - Flexible 2x2 or 3x2 with 4:3 ratio */
.gallery-item.hero,
.gallery-item.hero-image {
  aspect-ratio: 4 / 3; /* Maintain 4:3 aspect ratio for heroes too */
  height: auto;
}

/* TOP POSITIONING - Default 3x2 (full width) when no left/right specified */
.gallery-grid.hero-top:not(.hero-left):not(.hero-right) .gallery-item.hero,
.gallery-item.hero.hero-top:not(.hero-left):not(.hero-right) {
  grid-column: 1 / 4; /* Full width (3x2) */
  grid-row: 1 / 3; /* Top rows */
}

/* TOP + LEFT - 2x2 positioned on left */
.gallery-grid.hero-top.hero-left .gallery-item.hero,
.gallery-item.hero.hero-top.hero-left {
  grid-column: 1 / 3; /* Left columns (2x2) */
  grid-row: 1 / 3; /* Top rows */
}

/* TOP + RIGHT - 2x2 positioned on right */
.gallery-grid.hero-top.hero-right .gallery-item.hero,
.gallery-item.hero.hero-top.hero-right {
  grid-column: 2 / 4; /* Right columns (2x2) */
  grid-row: 1 / 3; /* Top rows */
}

/* BOTTOM POSITIONING - Default 3x2 (full width) when no left/right specified */
.gallery-grid.hero-bottom:not(.hero-left):not(.hero-right) .gallery-item.hero,
.gallery-item.hero.hero-bottom:not(.hero-left):not(.hero-right) {
  grid-column: 1 / 4; /* Full width (3x2) */
  grid-row: 2 / 4; /* Bottom rows */
}

/* BOTTOM + LEFT - 2x2 positioned on left */
.gallery-grid.hero-bottom.hero-left .gallery-item.hero,
.gallery-item.hero.hero-bottom.hero-left {
  grid-column: 1 / 3; /* Left columns (2x2) */
  grid-row: 2 / 4; /* Bottom rows */
}

/* BOTTOM + RIGHT - 2x2 positioned on right */
.gallery-grid.hero-bottom.hero-right .gallery-item.hero,
.gallery-item.hero.hero-bottom.hero-right {
  grid-column: 2 / 4; /* Right columns (2x2) */
  grid-row: 2 / 4; /* Bottom rows */
}

/* DEFAULT - If no positioning specified, default to top full width */
.gallery-item.hero:not(.hero-top):not(.hero-bottom) {
  grid-column: 1 / 4; /* Full width (3x2) */
  grid-row: 1 / 3; /* Top rows */
}

/* Regular items - 1x1 cell with 4:3 aspect ratio */
.gallery-item:not(.hero):not(.hero-image) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 3; /* 4:3 aspect ratio */
}

/* Horizontal Scroll Style */
.gallery-style-horizontal .gallery-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  margin: 2rem 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--soft-gold) var(--light-gray);
}

.gallery-style-horizontal .gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-style-horizontal .gallery-grid::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 4px;
}

.gallery-style-horizontal .gallery-grid::-webkit-scrollbar-thumb {
  background: var(--soft-gold);
  border-radius: 4px;
}

.gallery-style-horizontal .gallery-item {
  flex: 0 0 300px;
  aspect-ratio: 4 / 3; /* 4:3 aspect ratio for horizontal scroll */
  height: auto;
}

.gallery-style-horizontal .gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Fill container completely */
}

/* Styled Image Layout - Horizontal arrangement */
.gallery-style-styled .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px); /* Regular row height */
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 1400px;
}

/* Hero image takes up 2x1 space (top row) */
.gallery-style-styled .gallery-item.hero-image {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  height: 400px; /* Taller height for hero */
}

/* Large images take up 2x1 space */
.gallery-style-styled .gallery-item[data-size="large"] {
  grid-column: span 2;
  grid-row: span 1;
  height: 400px; /* Taller height for large */
}

/* Medium images take up 1x1 space */
.gallery-style-styled .gallery-item[data-size="medium"] {
  grid-column: span 1;
  grid-row: span 1;
  height: 300px; /* Regular height for medium */
}

/* Small images take up 1x1 space */
.gallery-style-styled .gallery-item[data-size="small"] {
  grid-column: span 1;
  grid-row: span 1;
  height: 300px; /* Regular height for small */
}

/* Specific positioning for styled layout - Horizontal arrangement */
.gallery-style-styled .gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery-style-styled .gallery-item:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.gallery-style-styled .gallery-item:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.gallery-style-styled .gallery-item:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gallery-style-styled .gallery-item:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Always cover the box fully */
  transition: var(--transition);
  opacity: 0;
  transform: scale(1.1);
  border-radius: 12px; /* Match container border radius */
}

/* Ensure hero images also cover fully */
.gallery-item.hero img,
.gallery-item.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Always cover the box fully */
}

.gallery-item img.loaded {
  opacity: 1;
  transform: scale(1);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(1, 68, 33, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-info h3 {
  color: var(--white);
  font-size: var(--font-header-sm);
  margin-bottom: 0.5rem;
}

.gallery-item-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-body-sm);
}

/* Loading Skeleton */
.gallery-item.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 15000; /* Higher than main nav (10000) to cover everything */
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  body.gallery-page,
  body.staydine-page {
    padding-top: 420px; /* Increased for mobile with style controls */
  }

  .gallery-style-controls {
    top: 100px; /* Adjust for smaller main nav on mobile */
    padding: 1rem 0;
  }

  .style-controls-container {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .gallery-style-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .gallery-style-btn span {
    display: none; /* Hide text on mobile, show only icons */
  }

  .gallery-navigation-header {
    padding: 1.5rem 0;
    top: 60px; /* Adjust for smaller main nav on mobile */
  }

  .gallery-page-header {
    padding: 2rem 0;
  }

  .gallery-page-header h1 {
    font-size: 2.5rem;
  }

  .gallery-section:first-of-type {
    margin-top: -120px; /* Adjusted for increased mobile padding */
  }

  /* Tablet: 2 columns responsive with 4:3 aspect ratio */
  .gallery-style-grid .gallery-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 1rem;
  }

  /* Hero spans full width on tablet (all positioning) */
  .gallery-item.hero,
  .gallery-item.hero-image,
  .gallery-item.hero.hero-top,
  .gallery-item.hero.hero-bottom,
  .gallery-item.hero.hero-top.hero-left,
  .gallery-item.hero.hero-top.hero-right,
  .gallery-item.hero.hero-bottom.hero-left,
  .gallery-item.hero.hero-bottom.hero-right,
  .gallery-item.hero:not(.hero-top):not(.hero-bottom) {
    grid-column: 1 / 3; /* Full width */
    aspect-ratio: 4 / 3; /* Maintain 4:3 aspect ratio */
    height: auto;
  }

  /* Regular items on tablet maintain 4:3 aspect ratio */
  .gallery-item:not(.hero):not(.hero-image) {
    aspect-ratio: 4 / 3;
  }

  /* Responsive styled layout */
  .gallery-style-styled .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px); /* Regular row height */
    gap: 0.5rem;
  }

  .gallery-style-styled .gallery-item {
    height: 200px; /* Regular height for mobile styled layout */
  }

  .gallery-style-styled .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .gallery-style-styled .gallery-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .gallery-style-styled .gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .gallery-style-styled .gallery-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .gallery-style-styled .gallery-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .gallery-nav-tabs {
    gap: 1rem;
  }

  .gallery-nav-tab {
    padding: 0.8rem 1.5rem;
    font-size: var(--font-body-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 480px) {

   .hero {
    height: 45vh;
    min-height: 320px;
    margin-top: 60px;
    margin-bottom: 25px;
  }

  /* Hero Carousel */
  .hero-carousel {
    height: 100%;
  }

  /* Hero Slide */
  .hero-slide {
    height: 100%;
  }

  /* Hero Image Container - Full Cover on Mobile */
  .hero-image-container {
    background-color: var(--deep-green) !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
  }

  /* Hero Image - Full Size */
  .hero-image {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1 !important;
  }

  /* Hero Gradient Overlay */
  .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Hero Navigation Buttons - Smaller */
  .hero-navigation {
    padding: 0 15px;
  }

  .hero-nav-btn {
    width: 44px;
    height: 44px;
  }

  .hero-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Hero Controls - Smaller and Adjusted */
  .hero-controls {
    bottom: 20px;
    gap: 16px;
    animation: fadeInUp 0.8s ease 1.5s forwards;
  }

  /* Image Counter - Smaller */
  .hero-counter {
    padding: 8px 14px;
    border-radius: 25px;
  }

  .counter-current {
    font-size: 14px;
  }

  .counter-separator {
    width: 16px;
    margin: 0 8px;
  }

  .counter-total {
    font-size: 12px;
  }

  /* Gallery Link Button - Smaller */
  .gallery-link-btn {
    padding: 10px 16px;
    font-size: 11px;
    gap: 8px;
    border-radius: 40px;
  }

  .btn-icon svg,
  .btn-arrow svg {
    width: 13px;
    height: 13px;
  }

  /* Adjust fade-in animation timing */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  body.gallery-page,
  body.staydine-page {
    padding-top: 300px; /* Increased for small mobile with style controls */
  }

  .gallery-style-controls {
    top: 140px; /* Adjust for even smaller main nav */
    padding: 0.5rem 0;
  }

  .gallery-style-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .gallery-navigation-header {
    padding: 1rem 0;
    top: 60px; /* Adjust for even smaller main nav */
  }

  .gallery-page-header {
    padding: 1.5rem 0;
  }

  .gallery-section {
    padding: 3rem 1rem;
  }

  .gallery-section:first-of-type {
    margin-top: -60px; /* Adjusted for increased small mobile padding */
  }

  .gallery-nav-container {
    padding: 0 1rem;
  }

  .gallery-nav-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .gallery-nav-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Mobile: 1 column responsive with 4:3 aspect ratio */
  .gallery-style-grid .gallery-grid,
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 0.75rem;
  }

  /* Hero takes full width on mobile (all positioning) */
  .gallery-item.hero,
  .gallery-item.hero-image,
  .gallery-item.hero.hero-top,
  .gallery-item.hero.hero-bottom,
  .gallery-item.hero.hero-top.hero-left,
  .gallery-item.hero.hero-top.hero-right,
  .gallery-item.hero.hero-bottom.hero-left,
  .gallery-item.hero.hero-bottom.hero-right,
  .gallery-item.hero:not(.hero-top):not(.hero-bottom) {
    grid-column: 1 / 2; /* Full width */
    aspect-ratio: 4 / 3; /* Maintain 4:3 aspect ratio */
    height: auto;
  }

  /* Regular items on mobile maintain 4:3 aspect ratio */
  .gallery-item:not(.hero):not(.hero-image) {
    aspect-ratio: 4 / 3;
  }
}

/* Good to Know Section Styles */
.good-to-know-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.good-to-know-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.good-to-know-section .section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.good-to-know-section .section-header p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Info Tabs Navigation */
.info-tabs {
  display: flex; 
  flex-direction: row; 
  gap: 1rem;
  padding: 1rem 1rem;
  padding-bottom: 1rem;
  justify-content: center;
  overflow-x: auto; 
  overflow-y: hidden;
  flex-wrap: nowrap; 
  scrollbar-width: thin;
  scrollbar-color: var(--soft-gold) var(--light-gray);
  -webkit-overflow-scrolling: touch;
  flex-shrink: 0;
  margin-bottom: 4rem;
}

.info-tab-btn {
  background: var(--white);
  border: 2px solid var(--soft-gold);
  color: var(--deep-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: var(--font-medium);
  font-size: var(--font-body-md);
  text-decoration: none;
  display: inline-block;
}

.info-tab-btn:hover,
.info-tab-btn.active {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(2px);
}

/* Info Tab Content */
.info-content {
  position: relative;
}

.info-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.info-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Find Us & Visit Layout */
.info-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.info-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.staydine-logo {
  width: 250px;
  height: 250px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.staydine-logo .logo-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.info-details h3 {
  font-size: 2rem;
  color: var(--deep-green);
  margin-bottom: 2rem;
  font-weight: var(--font-bold);
}

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

.detail-icon {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item span {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
  text-align: start;
}

/* Find Us Section Social Links - Oval Button Style */
.find-us-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.find-us-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--soft-gold);
  border-radius: 50px;
  color: var(--deep-green);
  text-decoration: none;
  font-size: var(--font-body-sm);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.find-us-social-link:hover {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.find-us-social-link i {
  width: 16px;
  height: 16px;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
  width: 80px;
  height: 80px;
  background: var(--soft-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.info-card:hover .info-card-icon {
  transform: scale(1.1);
}

.info-card-icon i {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.info-card h4 {
  font-size: var(--font-header-sm);
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-weight: var(--font-semibold);
}

.info-card p {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.review-stars .star {
  width: 20px;
  height: 20px;
  color: #ddd;
}

.review-stars .star.filled {
  color: var(--soft-gold);
}

.review-card p {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author strong {
  color: var(--deep-green);
  font-weight: var(--font-semibold);
}

.review-platform {
  font-size: var(--font-body-sm);
  color: var(--soft-gold);
  font-weight: var(--font-medium);
}

/* Responsive Design for Good to Know */
@media (max-width: 1024px) {
  .info-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .staydine-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .good-to-know-section {
    padding: 4rem 0;
  }

  .good-to-know-section .section-header h2 {
    font-size: 2.5rem;
  }

 .info-tabs {
  flex-direction: row; 
  gap: 1rem;
  padding: 1rem 1rem;
  padding-bottom: 1rem;
  justify-content: flex-start;
  scrollbar-width: thin;
  scrollbar-color: var(--soft-gold) var(--light-gray);
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  overflow-y: hidden;
  flex-shrink: 0;
}

.info-tabs::-webkit-scrollbar {
  display: none;
}

  .info-tab-btn {
    padding: 0.85rem 0.5rem;
    font-size: var(--font-body-sm);
    min-width: 240px;
  }

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

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

  .find-us-social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .good-to-know-section .section-header h2 {
    font-size: 2rem;
  }

  .info-tabs {
    flex-direction: row; 
    gap: 1rem;
    padding: 1rem 1rem;
    padding-bottom: 1rem;
    justify-content: flex-start;
    scrollbar-width: thin;
    scrollbar-color: var(--soft-gold) var(--light-gray);
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    overflow-y: hidden;
  }

  .info-tab-btn {
    min-width: 200px;
    text-align: center;
  }

  .info-card,
  .review-card {
    padding: 2rem;
  }

  .staydine-logo {
    width: 150px;
    height: 150px;
  }

  .info-details h3 {
    font-size: 1.5rem;
  }
}

/* Menu Overview Styles */
.menu-overview {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  text-align: center;
}

.menu-overview p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.menu-action {
  display: flex;
  justify-content: center;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--soft-gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: var(--font-semibold);
  font-size: var(--font-body-md);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-btn:hover {
  background: var(--deep-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-btn i {
  width: 20px;
  height: 20px;
}

.menu-btn.full-width {
  width: 100%;
  justify-content: center;
}

/* Chef's Recommendations Styles */
.chef-menu-section {
  margin-top: 2rem;
}

.chef-menu-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.chef-menu-section .section-header h3 {
  font-size: 2.5rem;
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-weight: var(--font-bold);
}

.chef-menu-section .section-header p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Recommendations Grid */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Chef Recommendations Swiper */
.recommendations-swiper {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 20px 10px 3rem 10px;
  overflow: visible;
}

.recommendations-swiper .swiper-wrapper {
  align-items: stretch;
  background: transparent !important; /* Ensure no background */
  overflow: visible;
}

.recommendations-swiper .swiper-slide {
  height: auto;
  background: transparent !important; /* Remove grey rectangle background */
  display: flex;
}

/* Override the main styles.css swiper-slide background */
.chef-menu-section .swiper-slide,
.chef-offers-section .swiper-slide,
.staydine-offers-section .swiper-slide {
  background: transparent !important;
}

.recommendations-swiper .swiper-button-next,
.recommendations-swiper .swiper-button-prev {
  color: var(--soft-gold);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -20px;
}

.recommendations-swiper .swiper-button-next:after,
.recommendations-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.recommendations-swiper .swiper-pagination {
  bottom: 0;
}

.recommendations-swiper .swiper-pagination-bullet {
  background: var(--light-gray);
  opacity: 0.5;
}

.recommendations-swiper .swiper-pagination-bullet-active {
  background: var(--soft-gold);
  opacity: 1;
}

/* Responsive settings for recommendations swiper */
@media (min-width: 1024px) {
  .recommendations-swiper .swiper-slide {
    width: calc(33.333% - 20px);
    margin-right: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .recommendations-swiper .swiper-slide {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .recommendations-swiper .swiper-slide {
    width: calc(85% - 10px);
    margin-right: 20px;
  }
}

.recommendation-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recommendation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Chef's Menu Section - Fix card shadow clipping */
.chef-menu-section .recommendations-swiper {
  padding: 20px 10px 3rem 10px;
  overflow: visible;
}

.chef-menu-section .recommendations-swiper .swiper-wrapper {
  overflow: visible;
}

.chef-menu-section .recommendation-item {
  margin: 10px;
}

/* Chef's Offers Section - Fix card shadow clipping */
.chef-offers-section .recommendations-swiper {
  padding: 20px 10px 3rem 10px;
  overflow: visible;
}

.chef-offers-section .recommendations-swiper .swiper-wrapper {
  overflow: visible;
}

.chef-offers-section .recommendation-item {
  margin: 10px;
}

/* StayDine Offers Section - Specific styles for offer cards with shadow fix */
.staydine-offers-section .recommendations-swiper {
  padding: 20px 10px 3rem 10px;
  overflow: visible;
}

.staydine-offers-section .recommendations-swiper .swiper-wrapper {
  overflow: visible;
}

.staydine-offers-section .recommendation-item {
  margin: 10px;
}

.recommendation-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.recommendation-item:hover .recommendation-image img {
  transform: scale(1.05);
}

.recommendation-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-body-sm);
  font-weight: var(--font-semibold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recommendation-badge i {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
}

.recommendation-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recommendation-info h4 {
  font-size: var(--font-header-sm);
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-weight: var(--font-semibold);
  line-height: 1.3;
}

.recommendation-info p {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.recommendation-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.recommendation-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--off-white);
  margin-top: auto;
}

.recommendation-meta .price {
  font-size: var(--font-body-lg);
  font-weight: var(--font-bold);
  color: var(--deep-green);
  text-align: center;
}

.recommendation-meta .menu-btn {
  width: 100%;
  justify-content: center;
}

.recommendation-meta .prep-time {
  font-size: var(--font-body-sm);
  color: var(--light-gray);
  background: var(--off-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Chef's Note */
.chef-note {
  background: linear-gradient(
    135deg,
    var(--deep-green) 0%,
    var(--soft-gold) 100%
  );
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
  text-align: center;
}

.chef-note-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.chef-note-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chef-note-icon i {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.chef-note-text h4 {
  font-size: var(--font-header-sm);
  margin-bottom: 1rem;
  font-weight: var(--font-semibold);
}

.chef-note-text p {
  font-size: var(--font-body-md);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Dining Overview Styles */
.dining-overview {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dining-overview p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dining-options h4 {
  font-size: var(--font-header-sm);
  color: var(--deep-green);
  margin-bottom: 1.5rem;
  font-weight: var(--font-semibold);
  text-align: center;
}

.dining-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.dining-list li {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 15px;
  transition: var(--transition);
}

.dining-list li:hover {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

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

.dining-item-header i {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  flex-shrink: 0;
}

.dining-item-header h3 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  color: var(--deep-green);
  margin: 0;
}

.dining-item-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-left: 2.5rem; /* Align with header text */
}

.dining-item-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dining-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dining-item-desc {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  text-align: start !important;
}

.dining-list li i {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.dining-list li span {
  font-size: var(--font-body-md);
  color: var(--light-gray);
  line-height: 1.6;
}

.dining-action {
  display: flex;
  justify-content: center;
}

.dining-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--deep-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: var(--font-semibold);
  font-size: var(--font-body-md);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dining-btn:hover {
  background: var(--soft-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dining-btn i {
  width: 20px;
  height: 20px;
}

.chef-menu-section .section-header,
.chef-offers-section .section-header,
.staydine-offers-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Styles for New Components */
@media (max-width: 768px) {
  .menu-overview,
  .dining-overview {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .menu-overview p,
  .dining-overview p {
    font-size: var(--font-body-md);
    margin-bottom: 1.5rem;
  }

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

  .chef-menu-section .section-header h3 {
    font-size: 2rem;
  }

  /* Move View All button to bottom on tablet/mobile */
  .chef-menu-section .section-header,
  .chef-offers-section .section-header,
  .staydine-offers-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

.chef-menu-section .view-all-link,
.chef-offers-section .view-all-link,
.staydine-offers-section .view-all-link {
  width: 100%;
  display: flex;
  justify-content: center;
}


.chef-menu-section .view-all-btn,
.chef-offers-section .view-all-btn,
.staydine-offers-section .view-all-btn {
  width: auto; 
}

  .chef-note {
    padding: 2rem;
  }
  .dining-list li {
    padding: 1rem;
  }

  .dining-item-content {
    padding-left: 1.5rem;
    gap: 1rem;
  }

  .dining-item-image {
    width: 70px;
    height: 70px;
  }

  .dining-list li i {
    margin: 0;
  }

  .menu-btn,
  .dining-btn {
    padding: 0.875rem 1.75rem;
    font-size: var(--font-body-sm);
  }
}

@media (max-width: 480px) {
  .menu-overview,
  .dining-overview,
  .chef-note {
    padding: 1.5rem;
  }

  .chef-menu-section .section-header h3 {
    font-size: 1.75rem;
  }

  .recommendation-info {
    padding: 1.5rem;
  }

  .recommendation-meta {
    gap: 0.75rem;
  }

  .dining-item-content {
    padding-left: 1rem;
    gap: 0.75rem;
  }

  .dining-item-image {
    width: 60px;
    height: 60px;
  }

  .dining-item-desc {
    font-size: 0.9rem;
  }

  .chef-note-content {
    gap: 1rem;
  }

  .chef-note-icon {
    width: 60px;
    height: 60px;
  }

  .chef-note-icon i {
    width: 30px;
    height: 30px;
  }
}

/* WYIM (With You In Mind) Section - Zig-zag Layout */
.wyim-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.wyim-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wyim-section .section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.wyim-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wyim-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.wyim-item.reverse {
  direction: rtl;
}

.wyim-item.reverse .wyim-content {
  direction: ltr;
}

.wyim-content {
  padding: 2rem;
}

.wyim-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.wyim-content p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.wyim-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-gold);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-semibold);
  font-size: var(--font-body-md);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 170, 113, 0.2);
}

.wyim-action-btn:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
}

.wyim-action-btn .action-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.wyim-action-btn:hover .action-arrow {
  transform: translateX(4px);
}

.wyim-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

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

.wyim-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wyim-swiper {
  height: 100%;
}

.wyim-swiper .swiper-slide {
  height: 100%;
}

.wyim-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wyim-swiper .swiper-pagination {
  bottom: 20px;
}

.wyim-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.6;
  width: 12px;
  height: 12px;
}

.wyim-swiper .swiper-pagination-bullet-active {
  background: var(--soft-gold);
  opacity: 1;
}

/* WYIM Responsive Design */
@media (max-width: 1024px) {
  .wyim-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wyim-item.reverse {
    direction: ltr;
  }

  .wyim-section .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .wyim-section {
    padding: 4rem 0;
  }

  .wyim-section .section-header {
    margin-bottom: 3rem;
  }

  .wyim-section .section-header h2 {
    font-size: 2rem;
  }

  .wyim-item {
    margin-bottom: 4rem;
  }

  .wyim-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .wyim-section {
    padding: 3rem 2rem;
  }

  .wyim-section .section-header {
    margin-bottom: 2rem;
  }

  .wyim-section .section-header h2 {
    font-size: 1.5rem;
  }

  .wyim-item {
    margin-bottom: 3rem;
  }

  .wyim-content {
    padding: 0;
  }

  .wyim-content h3 {
    font-size: 1.5rem;
  }

  .wyim-zigzag {
    padding: 0;
  }

  /* Maintain aspect ratio for WYIM images on mobile */
  .wyim-image {
    aspect-ratio: 4/3;
  }

  .wyim-image img {
    width: 100%;
    height: 100%;
  }
}

/* Simple Icons Support */
.simple-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.simple-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Modern View All Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(1, 68, 33, 0.2);
  border: 2px solid transparent;
}

.view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--soft-gold) 0%, #b89a5f 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.view-all-btn:hover::before {
  left: 0;
}

.view-all-btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
  border-color: var(--soft-gold);
}

.view-all-btn:active {
  transform: translateY(-1px);
}

.view-all-btn i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(4px) scale(1.1);
}

/* Pulse animation for extra catchiness */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 15px rgba(1, 68, 33, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(1, 68, 33, 0.4), 0 0 0 4px rgba(1, 68, 33, 0.1);
  }
  100% {
    box-shadow: 0 4px 15px rgba(1, 68, 33, 0.2);
  }
}

.view-all-btn {
  animation: pulse-glow 3s ease-in-out infinite;
}

.view-all-btn:hover {
  animation: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .view-all-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .view-all-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .view-all-btn i {
    width: 14px;
    height: 14px;
  }
}

/* NO FOOTER CSS - Let styles.css handle all footer styling */

/* Share Reflection Section */
.share-reflection-section {
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.share-reflection-content h3 {
  color: var(--deep-green);
  font-size: var(--font-header-md);
  font-weight: var(--font-semibold);
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: var(--transition);
  border: 2px solid transparent;
}

.share-btn.google-btn {
  background: var(--white);
  color: var(--deep-green);
  border-color: #4285f4;
}

.share-btn.google-btn:hover {
  background: #4285f4;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.share-btn.tripadvisor-btn {
  background: var(--white);
  color: var(--deep-green);
  border-color: #00af87;
}

.share-btn.tripadvisor-btn:hover {
  background: #00af87;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 175, 135, 0.3);
}

.share-btn i {
  font-size: 1.1rem;
}

.share-btn span {
  font-size: var(--font-body-md);
}

/* Responsive Design for Share Reflection */
@media (max-width: 768px) {
  .share-reflection-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .share-reflection-content h3 {
    font-size: var(--font-header-sm);
    margin-bottom: 1rem;
  }

  .share-buttons {
    gap: 0.75rem;
  }

  .share-btn {
    padding: 0.625rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 200px;
    justify-content: center;
  }
}