/* ══════════════════════════════════════════════════
   PURA VIDA CASAS — activities.css
   ══════════════════════════════════════════════════ */

:root {
  --teal: #4a9b8c;
  --teal-dk: #357a6d;
  --brown: #3d2b1a;
  --text-dark: #2c2016;
  --text-mid: #5a4535;
  --off-white: #f8f5f0;
  --cream: #f2ede6;
}

body.activities-page {
  background-color: var(--off-white);
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  padding-top: 70px;
  overflow-x: hidden;
}

/* --- Breadcrumb Override --- */
.breadcrumb-wrap {
  height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-custom {
  list-style: none;
  display: flex;

  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}



.breadcrumb-wrap video {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.breadcrumb-wrap .container {
  position: relative;
  z-index: 2;

}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 15px;
  display: inline-block;
  background: #c0c1c1ab;
  padding: 7px 15px;
  border-radius: 30px;
}

.breadcrumb-wrap h1 {
  font-size: 77px;
  color: var(--off-white);

  font-weight: 600;

  margin-top: 20px;
}

.breadcrumb-wrap p {
  font-size: 20px;
  color: var(--off-white);
  margin-top: 10px;
  font-weight: 700;
}

.breadcrumb-item-custom a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item-custom a:hover {
  color: var(--teal-dark);
}

.breadcrumb-item-custom.divider {
  margin: 0 12px;
}

.breadcrumb-item-custom.active {
  color: var(--teal-dark);
}

/* --- Intro Section --- */
.activities-intro {
  padding: 80px 0;
  background-color: var(--off-white);
}


.hedding {
  padding: 70px 0;
  background-color: white;
}

.act-main-title {

  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;

  text-align: center;
  background: white;

}

.act-main-title span {
  color: var(--teal-dk);
}


.act-quote-box {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  border: 1px solid rgba(74, 155, 140, 0.2);
  background-color: #fdfdfd;
  position: relative;
}

.act-quote-box p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  margin: 0;
}

/* --- Video Section --- */
.featured-video-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-poster {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.featured-video-wrap:hover .video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-btn-large {
  width: 100px;
  height: 100px;
  background: var(--off-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--teal-dark);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.play-btn-large:hover {
  transform: scale(1.1);
  background: var(--teal-dark);
  color: var(--off-white);
}

/* --- Planning & Notes --- */
.planning-text {
  max-width: 800px;
  margin: 0 auto 60px;
}

.planning-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--brown);
}

.planning-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.highlight-text {
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 20px;
}

.important-notes {

  margin: 0 auto;
  padding: 30px;
  background: var(--cream);
  border-radius: 12px;
  text-align: left;
}

.important-notes h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--brown);
  margin-bottom: 20px;
  text-align: center;
}

.important-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.important-notes li {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.important-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: bold;
}

/* --- Category Grid --- */
.cat-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.cat-item-large {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  aspect-ratio: 1/1;
}

.cat-item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

/* Subtle full-image overlay for better text contrast */
.cat-item-large::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  /* Light overall darkening */
  transition: background 0.3s ease;
  z-index: 1;
}

.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 25px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
  color: var(--off-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  /* Responsive font size */
  font-weight: 700;
  line-height: 1.1;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cat-label i {
  vertical-align: middle;
  margin-left: 10px;
}

.our-favorites {
  padding: 80px 0 0px;
  text-align: center;
}

/* --- Activity Tabs --- */
.activity-tabs-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  margin-bottom: 40px;
}

.act-tab-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 17px;
  background: white;
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #bfbfbf;
  cursor: pointer;
  font-size: 0.85rem;
}

.act-tab-pill svg {
  font-size: 1.2rem;
  color: var(--teal-dark);
  transition: color 0.3s ease;
}

.act-tab-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--teal-dark);
}

.act-tab-pill.active {
  background: var(--teal-dk);
  color: white;
  border-color: var(--teal-dk);
}

.act-tab-pill.active svg {
  color: white;
}

/* --- Premium Activity Cards --- */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px 0;
}

.act-card-premium {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid #f0f0f0;
}

.act-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.act-card-premium:hover .act-card-title {
  color: var(--teal-dk);
}

.act-card-img-wrap {
  height: 240px;
  overflow: hidden;
}

.act-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.act-card-premium:hover .act-card-img-wrap img {
  transform: scale(1.08);
}

.act-card-content {
  padding: 15px;
}

.act-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
  /* line-height: 1.2; */
  min-height: 3rem;
}

.act-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-view-card {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-dk);
  text-decoration: none;
  border: 1px solid var(--teal-dk);
  padding: 6px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.btn-view-card:hover {
  background: var(--teal-dk);
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* --- Contact Sidebar (Inquiry Section) --- */
.contact-sidebar-wrap {
  background: var(--teal-dk);
  padding: 40px;
  border-radius: 24px;
  color: white;

}

.contact-sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.2;
}

.contact-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cream);
  flex-shrink: 0;
}

.contact-text-box h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.contact-text-box p,
.contact-text-box a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text-box a:hover {
  color: white;
}

/* --- Map Card Below SideBar --- */
.map-card-simple {
  background: white;
  padding: 25px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-card-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.map-card-icon {
  width: 60px;
  height: 60px;
  background: #f0f4f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-dk);
}

.map-card-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--brown);
}

.map-card-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

.map-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* --- Important Notice Section --- */
.important-notice-section {
  padding: 60px 0 100px;
  background-color: var(--off-white);
}

.notice-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.notice-header {
  background: var(--teal-dk);
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.notice-header i {
  color: var(--cream);
  font-size: 1.4rem;
}

.notice-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}

.notice-body {
  padding: 40px;
  display: flex;
  flex-direction: column;

}

.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.notice-item i {
  color: var(--teal-dark);
  font-size: .9rem;
  margin-top: 3px;
}

.notice-item p {
  font-size: 1rem;
  color: var(--text-dark);
  /* line-height: 1.5; */
  margin-bottom: 0;
  font-weight: 600;
}

/* Specific Highlights from image */
.notice-item.highlight-tan {
  background-color: #f9f5f0;
}

.notice-item.highlight-tan i {
  color: #c4a484;
}

.notice-item.highlight-warning {
  background-color: #fdf7e2;
  border-left: 4px solid #f1c40f00;
  /* Subtle accent */
}

.notice-item.highlight-warning i {
  color: #d4ac0d;
}

.notice-item.highlight-gray {
  background-color: #f8f9fa;
}

.act-card-unit {
  font-size: 0.65rem;
  font-weight: 700;
  color: #99999900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cat-label span {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #58c8bd;
  /* Premium teal color */
  margin-top: 10px;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 10px;
  border-radius: 4px;
}

.cat-item-large:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

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

.cat-item-large:hover .cat-label {
  padding-bottom: 35px;
}

/* --- Filter Tabs --- */
.filter-tabs-wrap {
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.act-tab {
  background: var(--off-white);
  border: 1px solid #ddd;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  transition: all 0.3s;
  cursor: pointer;
}

.act-tab:hover,
.act-tab.active {
  background: var(--teal-dark);
  color: var(--off-white);
  border-color: var(--teal-dark);
  box-shadow: 0 5px 15px rgba(74, 155, 140, 0.3);
}

/* --- Activity Grid & Cards --- */
.act-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.act-card {
  background: var(--off-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.act-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.act-img {
  height: 220px;
  overflow: hidden;
}

.act-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.act-body h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown);
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.act-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex-grow: 1;
}

.act-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f8f8f8;
}

.act-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.act-view-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.3s;
}

.act-view-link:hover {
  color: var(--teal-dark);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .act-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .act-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .act-main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .act-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid-large {
    grid-template-columns: 1fr;
  }

  .video-poster {
    height: 300px;
  }

  .act-main-title {
    font-size: 2rem;
  }
}

/* --- Inquiry Section (Events Style) --- */
.adventure-inquiry {
  padding: 61px 0;
  background-color: var(--off-white);
}

.inquiry-card {
  max-width: 900px;
  background: var(--off-white);
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  margin-left: auto;
  margin-right: auto;
}

.section-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--brown);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 10px;
  display: block;
}

.form-control,
.form-select {
  padding: 12px 20px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 4px rgba(74, 155, 140, 0.1);
  outline: none;
}

.btn-primary-pv {
  background-color: var(--teal-dark);
  color: var(--off-white);
  border: none;
  padding: 16px 45px;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  margin-top: 20px;
  width: 100%;
}

.btn-primary-pv:hover {
  background-color: var(--teal-dk);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(74, 155, 140, 0.2);
  color: var(--off-white);
}

.activity-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background: #fdfdfd;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-top: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
}

.check-item input {
  accent-color: var(--teal-dark);

  .inquiry-form-wrap {
    padding: 35px;
  }
}

@media (max-width: 575px) {
  .activity-selection-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Tour Planning Section (New) --- */
.tour-planning-section {
  padding: 70px 0;
  background-color: var(--off-white);
}

.featured-categories h3 {
  font-size: 42px;
  font-weight: 700;
}

.featured-categories {
  background: white;
}

.planning-badge {
  display: inline-block;
  background: rgba(74, 155, 140, 0.1);
  color: var(--teal-dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.planning-title {

  font-size: 2.5rem;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 700;
}

.planning-title span {

  color: var(--teal-dark);
}

.planning-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}

.planning-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.planning-checks li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-mid);
}

.planning-checks li i {
  color: var(--teal-dark);
  font-size: 1.4rem;
}

.planning-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.planning-info-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  display: flex;
  gap: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  text-align: left;
}

.planning-info-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-dark);
  flex-shrink: 0;
}

.card-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 12px;
  font-weight: 700;
}

.card-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

.planning-footer-cta {
  text-align: center;
}

.planning-footer-cta p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 15px;
}

.btn-planning-cta {
  background: var(--teal-dk);
  color: white !important;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-planning-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .favorites-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .planning-title {
    font-size: 2.8rem;
  }

  .planning-info-card {
    padding: 25px;
    gap: 15px;
  }
}