/* ══════════════════════════════════════════════════
   PURA VIDA CASAS — attractions.css (REIMAGINED)
   ══════════════════════════════════════════════════ */

.attractions-page {
  background-color: #faf9f6;
  /* Soft off-white for a luxury feel */
}

/* --- Premium Hero Section --- */
.attr-premium-hero {
  position: relative;
  height: 80vh;
  min-height: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 22, 0.45) 0%, rgba(10, 26, 22, 0.25) 50%, rgba(10, 26, 22, 0.6) 100%);
  z-index: 1;
}

/* --- Custom Breadcrumb Style (Matching Image) --- */
.breadcrumb-bar {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: relative;
  z-index: 10;
}

.breadcrumb-custom {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}

.breadcrumb-item-custom a {
  color: #0fa892;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item-custom a:hover {
  text-decoration: underline;
}

.breadcrumb-item-custom.active {
  color: #777;
}

.breadcrumb-item-custom.divider {
  color: #ccc;
  padding: 0 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.hero-center-content {
  position: relative;
  z-index: 2;
  margin-top: 0px;
}

.attr-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.attr-hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-luxury-white {
  background: #ffffff;
  color: #0a1a16;
  padding: 14px 35px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-luxury-white:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

.btn-luxury-outline-white {
  background: transparent;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-luxury-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* --- Floating Features Bar --- */
.hero-features-bar {
  position: absolute;
  bottom: 55px;
  width: 100%;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 10px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: white;
}

.feature-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  z-index: 2;
}

.mouse-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

/* --- TAB SYSTEM --- */
.attractions-tabs-section {
  padding: 80px 0;
  background-color: #fff;
}

.custom-tabs-wrapper {
  margin-bottom: 50px;
}

.nav-tabs.custom-tabs {
  border-bottom: 1px solid #eee;
  justify-content: center;
  gap: 10px;
}

.nav-tabs.custom-tabs .nav-link {
  border: none;
  background: transparent;
  color: #0fa892;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 25px;
  transition: all 0.3s ease;
  border-radius: 4px 4px 0 0;
}

.nav-tabs.custom-tabs .nav-link:hover {
  color: #0a1a16;
  background: #f8f8f8;
}

.nav-tabs.custom-tabs .nav-link.active {
  background: #0a1a16;
  color: #fff;
}

/* --- CAROUSEL STRUCTURE --- */
.cards-carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 70px;
}

.cards-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.cards-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform;
}

.carousel-card-wrapper {
  flex: 0 0 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Responsive carousel widths */
@media (max-width: 991px) {
  .carousel-card-wrapper {
    flex: 0 0 50%;
  }
}

@media (max-width: 575px) {
  .carousel-card-wrapper {
    flex: 0 0 100%;
  }

  .cards-carousel-container {
    padding: 0 10px 65px;
  }
}

.carousel-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  color: #0a1a16;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-control-btn:hover {
  background: #0a1a16;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control-btn.prev {
  left: 0;
}

.carousel-control-btn.next {
  right: 0;
}

.carousel-bottom-controls {
  position: absolute;
  right: 20px;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.carousel-bottom-controls .carousel-control-btn {
  position: static;
  transform: none;
}

.carousel-control-btn.disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

/* --- CAROUSEL CARDS (MATCHING DISCOVERY GRID) --- */
.attr-carousel-item {
  position: relative;
  height: 520px;
  /* Increased from 480px */
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
  margin-bottom: 20px;
}

.attr-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  opacity: 0.85;
}

.attr-carousel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  color: white;
  z-index: 2;
  transition: all 0.4s ease;
}

.attr-carousel-num {
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 2;
}

.attr-carousel-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.1;
}

.attr-carousel-dist {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
}

.attr-carousel-item:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.attr-carousel-item:hover .attr-carousel-num {
  color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

.attr-carousel-item:hover .attr-carousel-info {
  padding-bottom: 45px;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

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

  .attr-premium-hero {
    height: auto;
    padding: 180px 0 100px;
  }

  .hero-features-bar {
    position: relative;
    bottom: 0;
    margin-top: 60px;
  }
}

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

/* --- Premium Discovery Grid --- */
.attractions-grid {
  padding-bottom: 120px;
}

.attr-explore-item {
  position: relative;
  height: 600px;
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.attr-explore-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

/* Overlapping Info Box */
.attr-explore-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.attr-num-outline {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  transition: all 0.5s ease;
}

.attr-cat-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--teal);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.attr-explore-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1;
}

.attr-explore-info p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 85%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
  height: 0;
  overflow: hidden;
}

.attr-dist-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 20px;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

/* Hover Effects */
.attr-explore-item:hover img {
  transform: scale(1.1);
}

.attr-explore-item:hover .attr-explore-info {
  padding-bottom: 70px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.attr-explore-item:hover .attr-num-outline {
  transform: translateY(-10px);
  color: rgba(255, 255, 255, 0.3);
}

.attr-explore-item:hover p {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 10px;
}

/* Alternating Heights (Masonry feel without JS) */
.col-md-6:nth-child(even) .attr-explore-item {
  height: 520px;
  margin-top: 80px;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

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

/* --- Responsive --- */
@media (max-width: 991px) {
  .col-md-6:nth-child(even) .attr-explore-item {
    margin-top: 0;
  }

  .attr-explore-item {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .attr-explore-info h3 {
    font-size: 2.22rem;
  }

  .attr-num-outline {
    font-size: 4rem;
  }
}

/* ------------------------------------------
   NEW LOCATION & PROXIMITY SECTIONS
------------------------------------------ */


.section-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* --- Airport Access --- */
.airport-access-box {
  background-color: #fbf9f4;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.access-icon-circle {
  width: 50px;
  height: 50px;
  background: #008080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.text-gold {
  color: #c5a059;
}

/* --- Location Feature Grid --- */
.feature-simple-card {
  padding: 20px;
  border-left: 1px solid #eee;
  height: 100%;
}

.feature-simple-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* --- Image Captions --- */
.location-image-wrap {
  overflow: hidden;
  position: relative;
}

.img-caption-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* --- Proximity Section --- */
.proximity-section {
  background-color: #fbf9f4;
}

.proximity-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  /* Match rounded-4 */
}

.img-bottom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.img-bottom-caption h4 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
}

.img-bottom-caption p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* --- Proximity List Cards --- */
.prox-item-card {
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  border: 1px solid transparent;
}

.prox-item-card:hover {
  transform: translateX(10px);
  border-color: #008080;
  background: #fff !important;
}

.prox-icon-box {
  background-color: #fffdf5;
  color: #c5a059;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.prox-time {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #4a4a4a;
}

@media (max-width: 991px) {

  .location-image-wrap img,
  .proximity-image-wrap img {
    margin-bottom: 30px;
  }

  .feature-simple-card {
    border-left: none;
    border-bottom: 1px solid #eee;
    padding-left: 0;
  }

  .img-caption-badge {
    top: 20px;
    left: 20px;
    padding: 10px 15px;
  }
}

/* --- CONCIERGE CTA --- */
.concierge-banner {
  background: var(--teal);
  /* Warm Terracotta/Brown from site */
  background: linear-gradient(135deg, var(-teal-dark) 0%, var(-teal-dark) 100%);
}

.serif-title {
  font-family: 'Cormorant Garamond', serif;
}

/* --- LUXURY CASAS GRID (4 per row) --- */
.luxury-casas-section .row {
  display: flex;
  flex-wrap: wrap;
}

.casa-luxury-card {
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.casa-luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.casa-img-wrap-new {
  height: 250px;
  /* Fixed height for consistency */
  width: 100%;
  overflow: hidden;
}

.casa-img-wrap-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casa-id-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1abc9c;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5;
}

.casa-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #121212;
}

.text-teal {
  color: #1abc9c;
}

.casa-specs-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.casa-loc-info {
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  margin-top: auto;
  /* Push to bottom of content area */
}

.btn-teal-action {
  background: #1abc9c;
  color: white;
  border: none;
  transition: all 0.3s;
}

.btn-teal-action:hover {
  background: #16a085;
  color: white;
}

/* --- COMBINATION STAYS --- */
.combo-card {
  height: 500px;
  /* Increased height */
  width: 100%;
  background: #000;
}

.combo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.8s ease;
}

.combo-card:hover img {
  transform: scale(1.1);
}

.combo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 15px;
  background: #008080;
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bg-orange {
  background: #e67e22 !important;
}

.bg-gold {
  background: #c5a059 !important;
}

.combo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: 5;
}

.btn-white-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.3s;
}

.btn-white-glass:hover {
  background: white;
  color: black;
}

@media (max-width: 991px) {
  .casa-img-wrap-new {
    height: 200px;
  }

  .combo-card {
    height: 400px;
  }
}

/* --- UNFORGETTABLE EXPERIENCES --- */
.exp-icon i {
  font-size: 2.5rem;
  opacity: 0.8;
}

.experience-img {
  transition: transform 0.5s ease;
}

.experience-img:hover {
  transform: scale(1.02);
}

/* --- WHY CHOOSE SECTION --- */
.why-card {
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

/* --- TESTIMONIALS --- */
.guest-initials {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #1abc9c;
}

.testimonial-card {
  border: 1px solid #eee !important;
}

/* --- FAQ & TRAVEL TIPS --- */
.tip-box {
  transition: all 0.3s ease;
}

.tip-box:hover {
  border-color: #1abc9c !important;
  background: #fffdf5 !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #1abc9c;
}

/* --- FINAL CTA --- */
.final-cta-section {
  background-color: #000;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('../img/bg.jpg') center/cover;
  filter: brightness(0.6);
}

.final-cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.final-cta-text {
  max-width: 600px;
  font-size: 1.1rem;
}

.final-cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 42px;
  margin-top: 30px;
}

.final-cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.final-cta-contact-link i {
  font-size: 1.1rem;
}

.final-cta-contact-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.z-index-10 {
  z-index: 10;
}

.ls-1 {
  letter-spacing: 1px;
}

/* --- CUSTOM CARD ACCORDION --- */
.custom-card-accordion .accordion-item {
  border: 1px solid #e0e0e0 !important;
  transition: all 0.3s ease;
}

.custom-card-accordion .accordion-item:hover {
  border-color: #1abc9c !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.custom-card-accordion .accordion-button {
  background: transparent !important;
  color: #333;
  font-size: 1.1rem;
}

.custom-card-accordion .accordion-button:not(.collapsed) {
  color: #1abc9c;
  box-shadow: none;
}

.custom-card-accordion .accordion-button::after {
  background-size: 1rem;
  transition: transform 0.3s ease;
}

.custom-card-accordion .accordion-body {
  line-height: 1.6;
}



.testimonials-section {
  background: none;
}

.testimonial-card {
  border: 1px solid #d3cdcd;
  box-shadow: 2px 2px #ededed;
}















/* ── PROPERTY CARDS ── */
.prop-section {
  padding: 60px 0;
  background: #fff;
}

.prop-section.bg-cream {
  background: var(--cream);
}

.prop-card-new {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prop-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.prop-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.prop-card-new:hover .prop-card-img img {
  transform: scale(1.05);
}

.prop-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.prop-card-badge.badge-orange {
  background: var(--badge-orange);
}

.prop-card-badge.badge-best {
  background: #2e7d5c;
}

.prop-card-body-new {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prop-card-body-new h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.prop-card-body-new p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
  flex: 1;
}

.prop-card-specs-new {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.prop-card-specs-new span {
  font-size: 0.78rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.prop-card-specs-new i {
  color: var(--teal);
  font-size: 0.85rem;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #0fa892 0%, #12b8a0 50%, #0c8a78 100%);
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(15, 168, 146, 0.2);
}

.btn-view-details:hover {
  background: linear-gradient(135deg, #0c8a78 0%, #12b8a0 50%, #0fa892 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 168, 146, 0.3);
}


.villa-quick-specs span {
  gap: 2px;
  font-size: 0.72rem;
}

.villa-quick-specs {
  gap: 14px;
}