:root {
  --primary-color: #89c4e4;
  --accent-color: #c4e4f4;
  --text-dark: #141616;
  --text-light: #555;
  --white: 0 0% 100%;
  --white-hex: #ffffff;
  --section-bg: #fdfaf5;
}

.flolab-img-div {
  position: relative;
}

.max-w-800-px {
  max-width: 800px;
}

/* Form validation feedback */
.form-control.is-invalid {
  border-color: #dc3545 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5' stroke-width='1'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4v3.2h-.4zm0 4.2h.4v.4h-.4z'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right calc(0.375em + 0.1875rem) center !important;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
}

html,
body {
  font-family: var(--body-font), "Lora", serif;
  color: var(--text-dark);
  overflow-x: hidden;
  /* CRITICAL: Disable smooth scroll behavior when using GSAP ScrollSmoother */
  scroll-behavior: auto !important;
}

.hf {
  font-family: var(--heading-font), "Cormorant Garamond", serif;
}

.c1 {
  color: var(--primary-color);
}

.c2 {
  color: var(--white-hex);
}

.c3 {
  color: var(--text-light);
}

.ls {
  letter-spacing: 0.5px;
}

.js {
  text-align: justify;
}

.sm-js {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Hero Section Refinement */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 500;
}

.btn-c1 {
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.4s;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* All phone/email links: always Poppins, never serif */
a[href^="tel:"],
a[href^="mailto:"] {
  font-family: "Poppins", sans-serif !important;
}

.btn-c1:hover {
  background: var(--white-hex);
  transform: translateY(-5px);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* About Section */
.call-animated-div {
  display: flex;
  align-items: center;
  background: var(--white-hex);
  padding: 18px 30px;
  border-radius: 15px;
  width: fit-content;
  border: 1px solid rgba(137, 196, 228, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pulse-button {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  animation: pulse-blue 2s infinite;
}

.trin-trin {
  font-size: 1.4rem;
  animation: vibrate 0.5s infinite;
}

@keyframes vibrate {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(137, 196, 228, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(137, 196, 228, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(137, 196, 228, 0);
  }
}

.why-us-img3 {
  border-radius: 15px;
  width: 85%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
}

.why-us-img3:hover {
  transform: scale(1.02);
}

.fi-1 {
  max-height: 480px;
  object-fit: cover;
}

.fi-2 {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 65% !important;
  border: 10px solid var(--white-hex);
}

/* Carousel Design */
.new-why-main {
  background: var(--section-bg);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.in-why {
  background: var(--white-hex);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.new-why-slide-img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.new-dot button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  background-color: var(--primary-color) !important;
  margin: 0 8px;
  border: 2px solid var(--white-hex) !important;
  opacity: 1 !important;
}

.new-dot button.active {
  background-color: var(--text-dark) !important;
}

/* Experience Cards */
.ser-card {
  background: var(--white-hex);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  border: 1px solid #f5f5f5;
}

.ser-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.in-ser-img {
  position: relative;
  margin: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.mask-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.over-b-card {
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px !important;
}

.over-b-card h6 {
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Venue Details Location Boxes */
.venue-main {
  background: #141616;
  position: relative;
  padding: 100px 0 !important;
}

.venue-box1 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.4s;
  height: 100%;
  color: white;
}

.venue-box1:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.venue-box1 h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.venue-box1 p {
  color: #aaa;
  font-size: 1rem;
}

.venue-box2 {
  background: var(--primary-color);
  border-radius: 15px;
  color: var(--text-dark);
}

.venue-box2 h4 {
  color: var(--text-dark);
}

.venue-box2 p {
  color: var(--text-dark);
  font-weight: 500;
}

/* Amenities */
.why-bx {
  background: var(--white-hex);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.why-bx-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.6s;
}

.why-bx:hover .why-bx-img {
  transform: scale(1.1);
}

.round-why {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--text-dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-bx h5 {
  font-size: 1.4rem;
  font-weight: 700;
}

/* FAQ Refined Premium Design */
.faq-card {
  background: var(--white-hex);
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid #eef2f5 !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.faq-card:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04) !important;
}

.faq-card.active {
  border-color: var(--primary-color) !important;
  box-shadow: 0 15px 35px rgba(137, 196, 228, 0.15) !important;
}

.faq-header {
  padding: 24px 28px !important;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--body-font), "Lora", serif;
  color: var(--text-dark) !important;
  transition: all 0.3s ease;
}

.faq-card:hover .faq-header {
  color: var(--primary-color) !important;
}

.faq-card.active .faq-header {
  color: var(--primary-color) !important;
  padding-bottom: 16px !important;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f8fa;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: bold;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-card:hover .faq-icon {
  background: rgba(137, 196, 228, 0.15);
}

.faq-card.active .faq-icon {
  background: var(--primary-color);
  color: var(--white-hex);
  transform: rotate(180deg);
}

.faq-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 28px 24px !important;
  border-top: none;
  transition: all 0.3s ease;
}

.footer {
  background-color: #141616 !important;
  margin-bottom: 0 !important;
}

.footer p,
.footer span,
.footer h4,
.footer a {
  color: #ffffff !important;
}

#scrollSmoother-container {
  min-height: 100vh;
  background-color: var(--section-bg);
  /* Prevent mysterious gaps */
  display: flex;
  flex-direction: column;
  width: 100%;
}

#scrollSmoother-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero {
    height: 75vh;
    margin-top: 0;
    padding-top: 80px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .fi-2 {
    width: 55% !important;
    bottom: -20px;
  }

  .new-why-slide-img {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-content p.hero-description {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 25px !important;
    line-height: 1.5;
  }

  .hero-content p:not(.hero-description) {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .btn-c1 {
    padding: 14px 35px;
    font-size: 1rem;
  }
}
