/**
 * CVP Properties 4.0 — Emerald Forest Light Theme
 * Deep green / Binghamton-brown banner, light gradient palette, glassmorphism accents
 * Linked AFTER main.css to override the default dark/blue styles
 */

/* ===== Google Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --clr-primary: #2a9d8f;
  --clr-primary-dark: #1a7a6e;
  --clr-primary-light: #5cc4b8;
  --clr-accent: #264653;
  --clr-accent-brown: #5c4033;
  --clr-deep-green: #1b4332;
  --clr-bg: #f8fafb;
  --clr-bg-warm: #eef6f2;
  --clr-text: #2d3436;
  --clr-text-muted: #555e62;
  --clr-white: #ffffff;
  --clr-card-bg: rgba(255, 255, 255, 0.88);
  --clr-glass: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Overrides ===== */
body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: var(--clr-accent);
}

p {
  line-height: 1.75;
  color: var(--clr-text-muted);
}

a {
  color: var(--clr-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--clr-primary-dark);
}

/* ===== Navigation — Glassmorphism ===== */
#navigation {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(42, 157, 143, 0.12);
  padding: 8px 0;
  transition: var(--transition);
}

#navigation.animated-header {
  padding: 18px 0;
}

h1.navbar-brand {
  font-weight: 700;
  font-size: 20px;
}

h1.navbar-brand a {
  color: var(--clr-accent) !important;
}

.navbar-inverse .navbar-nav>li>a {
  color: var(--clr-accent);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
  color: var(--clr-primary) !important;
}

.navbar-inverse .navbar-toggle {
  border-color: var(--clr-primary);
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: var(--clr-primary);
}

/* ===== Buttons — Bright white CTA styling ===== */
.btn-blue {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.35);
  padding: 14px 42px;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 157, 143, 0.45);
  color: #fff !important;
}

.btn-effect:before {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.btn-effect:hover,
.btn-effect:focus,
.btn-effect:active {
  color: #fff !important;
}

.btn-border {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  padding: 12px 35px;
}

.btn-border:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ===== Section Titles ===== */
.sec-title h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--clr-accent);
}

.sec-title h2:after {
  border-bottom: 2px solid var(--clr-primary);
  width: 80px;
  left: calc(50% - 40px);
}

.sec-title.white h2 {
  color: var(--clr-accent);
}

.sec-title.white h2:after {
  border-bottom: 2px solid var(--clr-primary);
}

.sec-title p,
.sec-title i {
  color: var(--clr-text-muted);
}

/* ===== Modern Luxury Hero Section ===== */
.modern-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  /* Fallback */
}

.display-flex-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(1.2) contrast(1.1) saturate(1.1);
  /* Brighter, crisper */
  transform: scale(1.05);
  animation: heroBgScale 30s linear infinite alternate;
}

@keyframes heroBgScale {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

/* Animated Mesh Overlay */
.hero-mesh-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-image:
    radial-gradient(at 10% 20%, rgba(42, 157, 143, 0.15) 0px, transparent 50%),
    radial-gradient(at 90% 10%, rgba(183, 217, 192, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(27, 67, 50, 0.1) 0px, transparent 50%);
  filter: blur(80px);
  animation: meshGradient 15s ease infinite alternate;
}

@keyframes meshGradient {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.2) translate(2%, 2%);
  }
}

.hero-luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(27, 67, 50, 0.15) 50%,
      rgba(0, 0, 0, 0.2) 100%);
  z-index: 3;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--clr-primary-light);
  top: 10%;
  left: -5%;
  animation: float 20s infinite alternate;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: #fff;
  bottom: 10%;
  right: -5%;
  animation: float 25s infinite alternate-reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--clr-deep-green);
  top: 50%;
  left: 40%;
  animation: float 18s infinite alternate;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(30px, 50px) rotate(15deg);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

/* Glassmorphism Panel */
.hero-glass-panel {
  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);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  max-width: 650px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.hero-description {
  font-size: 16px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}

/* Luxury Buttons */
.btn-luxury-primary {
  background: #fff !important;
  color: var(--clr-deep-green) !important;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-luxury-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.btn-luxury-outline {
  background: transparent !important;
  color: #fff !important;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #fff;
  transition: all 0.4s ease;
}

.btn-luxury-outline:hover {
  background: #fff !important;
  color: var(--clr-deep-green) !important;
  transform: translateY(-5px);
  text-decoration: none;
}

/* Quick Search Card */
.quick-search-card {
  perspective: 1000px;
}

.quick-search-card .card-inner {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  color: var(--clr-text);
  border-bottom: 5px solid var(--clr-primary);
}

.quick-search-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--clr-accent);
  text-align: center;
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-group-custom label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-control-luxury {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 14px;
  color: var(--clr-text);
  transition: var(--transition);
}

.form-control-luxury:focus {
  border-color: var(--clr-primary);
  outline: none;
  background: #fff;
}

.btn-search-luxury {
  width: 100%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-deep-green));
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  margin-top: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 15px rgba(42, 157, 143, 0.2);
}

.btn-search-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(42, 157, 143, 0.35);
  filter: brightness(1.1);
}

/* Trust Bar */
.trust-bar-section {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 11;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.trust-bar-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.trust-item i {
  color: var(--clr-primary);
  font-size: 20px;
}

.trust-item:hover {
  transform: translateY(-3px);
  color: var(--clr-primary);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.hero-scroll-indicator a {
  color: #fff;
  font-size: 30px;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-glass-panel {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .modern-hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .display-flex-center {
    flex-direction: column;
    text-align: center;
  }

  .hero-glass-panel {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .quick-search-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-glass-panel {
    padding: 30px 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-luxury-primary,
  .btn-luxury-outline {
    width: 100%;
  }

  .trust-bar-wrapper {
    justify-content: flex-start;
    padding: 0 15px;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
  }

  .btn-luxury-primary,
  .btn-luxury-outline {
    width: 100%;
    padding: 15px 30px;
  }
}

/* ===== About Section — Full Background Coverage ===== */
#about {
  background: linear-gradient(180deg,
      var(--clr-bg-warm) 0%,
      rgba(42, 157, 143, 0.06) 40%,
      rgba(27, 67, 50, 0.08) 100%);
  color: var(--clr-text);
  padding: 80px 0 60px;
}

#about h3 {
  color: var(--clr-accent);
}

/* Welcome / Parallax inside about — now with full gradient background */
#welcome.parallax {
  background-image: none !important;
}

#welcome.parallax .overlay {
  background: linear-gradient(135deg,
      rgba(238, 246, 242, 0.95) 0%,
      rgba(42, 157, 143, 0.08) 50%,
      rgba(248, 250, 251, 0.95) 100%);
  padding: 60px 0 40px;
}

/* Story cards side by side */
.about-stories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.about-story-card {
  background: var(--clr-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 157, 143, 0.1);
  padding: 30px 28px;
  flex: 1 1 420px;
  max-width: 540px;
  text-align: center;
  transition: var(--transition);
}

.about-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-story-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.about-story-card img:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: #ffffff;
}

.about-story-card .card-label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--clr-primary);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Results Section Styling */
#results-section {
  transition: all 0.5s ease-in-out;
  min-height: 400px;
}

#property-results-container {
  padding-top: 30px;
}

#property-results-container .portfolio-item {
  animation: fadeInUp 0.8s ease backwards;
}

#no-results h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

#reset-filters-btn {
  margin-top: 20px;
  padding: 12px 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-story-card p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== Portfolio / Properties Section — Stronger Gradient ===== */
#portfolio {
  background: linear-gradient(180deg,
      rgba(42, 157, 143, 0.04) 0%,
      rgba(238, 246, 242, 0.9) 25%,
      rgba(42, 157, 143, 0.10) 50%,
      rgba(27, 67, 50, 0.08) 80%,
      var(--clr-bg-warm) 100%);
  color: var(--clr-text);
  padding: 80px 0;
}

#portfolio .sec-title h2 {
  color: var(--clr-accent);
}

/* Property Cards — Uniform Sizing & Hover Effects */
.project-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-wrapper li {
  display: flex;
}

.portfolio-item {
  background: var(--clr-card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(42, 157, 143, 0.10);
  display: flex;
  flex-direction: column;
  width: 320px;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 157, 143, 0.3);
}

.portfolio-item a {
  display: block;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

figcaption.mask {
  background: linear-gradient(135deg,
      rgba(27, 67, 50, 0.88) 0%,
      rgba(42, 157, 143, 0.85) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  bottom: 0;
  position: relative;
  padding: 20px 22px;
  flex-grow: 1;
}

figcaption.mask h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}

figcaption.mask p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 2px;
}

.portfolio-item:hover figcaption.mask {
  bottom: 0;
}

/* ===== Discover / To-Do Section ===== */
#testimonials {
  background-image: none;
  background: linear-gradient(180deg,
      var(--clr-bg-warm) 0%,
      rgba(42, 157, 143, 0.05) 50%,
      var(--clr-bg) 100%);
}

#testimonials .overlay {
  background: transparent;
  padding: 70px 0 40px;
}

#testimonials h2 {
  color: var(--clr-accent);
}

#testimonials .sec-title h2:after {
  border-bottom: 2px solid var(--clr-primary);
}

/* Discover clickable card */
.discover-card {
  display: inline-block;
  background: var(--clr-card-bg);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 157, 143, 0.12);
  transition: var(--transition);
  margin-bottom: 20px;
}

.discover-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
  background: #fff;
}

.discover-card img {
  max-width: 120px;
  height: auto;
  border-radius: 8px;
}

.discover-card-text {
  margin-top: 12px;
  font-weight: 700;
  color: var(--clr-primary);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Side-by-side Discover + Feedback + Yoga layout */
.discover-feedback-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.discover-col,
.feedback-col,
.yoga-col {
  flex: 1;
  min-width: 300px;
  /* Ensure readability */
  text-align: center;
  background: var(--clr-card-bg);
  border-radius: var(--radius);
  padding: 40px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 157, 143, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.combined-section-title {
  font-size: 22px;

  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-primary);
  display: inline-block;
}

/* ===== Tenant Feedback / Reviews — Rotating Slider ===== */
.feedback-slider-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 280px;
}

.feedback-slide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.feedback-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.testimonial-item {
  background: var(--clr-card-bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
  border: 1px solid rgba(42, 157, 143, 0.10);
  width: 100%;
}

.testimonial-item img {
  border: 3px solid var(--clr-primary-light);
  box-shadow: var(--shadow-sm);
}

.testimonial-item>div>span {
  color: var(--clr-primary);
  font-weight: 700;
}

.testimonial-item>div p {
  color: var(--clr-text-muted);
}

/* Slider dots */
.feedback-dots {
  text-align: center;
  margin-top: 20px;
}

.feedback-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.25);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.feedback-dots .dot.active {
  background: var(--clr-primary);
  transform: scale(1.3);
}

/* ===== Amenities — Card Based Grid ===== */
.amenities-section {
  padding: 60px 0;
  background: var(--clr-bg-warm);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.amenity-card {
  background: var(--clr-white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  border: 1px solid rgba(42, 157, 143, 0.08);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
}

.amenity-card i {
  font-size: 24px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.amenity-card span {
  font-weight: 500;
  color: var(--clr-accent);
}

/* ===== Property Gallery — Grid Layout ===== */
.property-gallery {
  padding: 80px 0;
  background: var(--clr-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 33, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 32px;
}

/* ===== Request & Schedule Section ===== */
#request-schedule {
  background: linear-gradient(180deg,
      var(--clr-bg) 0%,
      var(--clr-bg-warm) 100%);
  padding: 80px 0;
}

#request-schedule .sec-title h2 {
  color: var(--clr-accent);
}

.request-schedule-card {
  background: var(--clr-card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid rgba(42, 157, 143, 0.12);
}

.request-schedule-card .form-group {
  margin-bottom: 18px;
}

.request-schedule-card label {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-accent);
  margin-bottom: 6px;
  display: block;
}

.request-schedule-card .form-control {
  border: 1px solid rgba(42, 157, 143, 0.2);

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--clr-text);
  font-size: 15px;
  height: 48px;
  padding: 10px 16px;
  transition: var(--transition);
  box-shadow: none;
}

.request-schedule-card .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
  outline: none;
}

.request-schedule-card textarea.form-control {
  height: 120px;
  resize: vertical;
}

.request-schedule-card .btn-blue {
  width: 100%;

  padding: 16px;
  font-size: 16px;
  margin-top: 10px;
}

.column-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-primary);
  display: inline-block;
}

.column-heading i {
  margin-right: 8px;
  color: var(--clr-primary);
}

/* Confirmation message */
#form-confirmation {
  display: none;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(92, 196, 184, 0.08));
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

#form-confirmation.show {
  display: block;
}

#form-confirmation i {
  color: var(--clr-primary);
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

#form-confirmation p {
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

#form-confirmation span {
  color: var(--clr-text-muted);
  font-size: 14px;
}

/* ===== Contact Details card ===== */
.contact-details {
  background: var(--clr-card-bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 157, 143, 0.08);
}

.contact-details h3 {
  border-bottom: 2px solid var(--clr-primary);
  color: var(--clr-accent);
  font-weight: 700;
}

.contact-details p {
  color: var(--clr-text-muted);
}

.contact-details p i {
  color: var(--clr-primary);
}

/* ===== Footer ===== */
#footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 0;
}

.footer-social ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social ul li a:hover {
  color: var(--clr-primary-light);
}

/* ===== Things To Do Section ===== */
.activities-section {
  padding: 80px 0;
  background-color: var(--clr-bg-warm);
}

.filter-controls {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--clr-white);
  border: 1px solid rgba(42, 157, 143, 0.2);
  color: var(--clr-accent);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: rgba(42, 157, 143, 0.05);
}

.filter-btn.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.25);
}

.activity-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.activity-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.activity-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.activity-card:hover .activity-img img {
  transform: scale(1.08);
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 70, 83, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.activity-card:hover .activity-overlay {
  opacity: 1;
}

.activity-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.activity-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.activity-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--clr-accent);
}

.activity-content p {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .request-schedule-card {
    padding: 28px 20px;
  }

  .request-schedule-card .row>div {
    margin-bottom: 20px;
  }

  .about-stories-row {
    flex-direction: column;
    align-items: center;
  }

  .about-story-card {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  #navigation {
    background: rgba(255, 255, 255, 0.96);
  }

  .caption-content h2 {
    font-size: 22px !important;
  }

  .caption-content>span {
    font-size: 14px !important;
  }

  .portfolio-item {
    width: 100% !important;
    max-width: 380px;
    margin: 0 auto 20px;
  }

  .portfolio-item img {
    height: 200px;
  }

  .request-schedule-card {
    padding: 24px 16px;
    border-radius: var(--radius);
  }

  .column-heading {
    font-size: 16px;
  }

  #about,
  #portfolio,
  #request-schedule {
    padding: 50px 0;
  }

  .testimonial-item {
    padding: 20px 16px;
  }

  .feedback-slider-container {
    min-height: 280px;
  }

  .discover-feedback-row {
    flex-direction: column;
    gap: 20px;
  }

  .discover-col,
  .feedback-col,
  .yoga-col {
    flex: 1 1 100%;
    padding: 30px 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 240px;
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-item {
    width: 300px !important;
  }
}

@media (min-width: 992px) {
  .portfolio-item {
    width: 320px !important;
  }
}