@import url(variable.css);

/* ===== NAVBAR STYLES ===== */
.navbar-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1.75rem 0;
}

.navbar-brand img {
  height: 48px;
  transition: filter 0.3s ease;
}

.navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--bs-primary-black);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--bs-primary-black);
}

.navbar-nav .nav-link.active {
  font-weight: 600;
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 1px;
    width: 0;
    background-color: var(--bs-primary-black);
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover::before,
  .navbar-nav .nav-link:focus::before {
    width: 100%;
  }

  body.home .navbar-nav .nav-link::before {
    background-color: var(--bs-white);
  }

  body.home .navbar-custom.scrolled .navbar-nav .nav-link::before {
    background-color: var(--bs-primary-black);
  }
}

/* Dropdown Styles */
.navbar-nav .dropdown-menu {
  margin-top: 12px;
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: var(--bs-border-radius-md);
  border-top-right-radius: 0;
  border: 2px solid var(--bs-white);
  background: var(--bs-vph-gray);
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar-nav .dropdown-item {
  color: var(--bs-primary-black);
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:active,
.navbar-nav .dropdown-item.active {
  text-decoration: none;
  color: var(--bs-primary-black);
  background-color: var(--bs-white);
  font-weight: 600;
}

.navbar-nav .dropdown-toggle::after {
  width: 8px;
  height: 8px;
  margin-left: 0.75em;
  border-top: none;
  border-left: none;
  border-right: 2px solid var(--bs-primary-black);
  border-bottom: 2px solid var(--bs-primary-black);
  transform: rotate(45deg);
}
.navbar-nav .dropdown .dropdown-toggle.show {
  font-weight: 600;
}

/* ===== HOMEPAGE NAVBAR (Transparent) ===== */
body.home .navbar-custom {
  background: transparent;
}

body.home .navbar-custom .navbar-nav .nav-link {
  color: var(--bs-white);
}

body.home .navbar-custom .navbar-brand img {
  filter: brightness(0) invert(1);
}

body.home .navbar-custom .navbar-toggler {
  color: var(--bs-white);
}

body.home .dropdown-toggle::after {
  border-color: var(--bs-white);
}

/* Scrolled state for homepage */
body.home .navbar-custom.scrolled {
  position: fixed;
  background: var(--bs-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.home .navbar-custom.scrolled .navbar-nav .nav-link {
  color: var(--bs-primary-black);
}

body.home .navbar-custom.scrolled .navbar-brand img {
  filter: none;
}

body.home .navbar-custom.scrolled .navbar-toggler {
  color: var(--bs-white);
  border-color: var(--bs-primary-black);
}

body.home .navbar-custom.scrolled .dropdown-toggle::after {
  border-color: var(--bs-primary-black);
}

/* ===== INNER PAGE NAVBAR (White/Solid) ===== */
body.inner-page {
  padding-top: 0;
}

body.inner-page .navbar-custom {
  position: fixed;
  background: var(--bs-white);
}

body.inner-page .navbar-custom.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.inner-page .navbar-custom .navbar-nav .nav-link {
  color: var(--bs-primary-black);
}

/* ===== MOBILE MENU (Offcanvas Effect) ===== */
.navbar .navbar-toggler {
  background-color: var(--bs-primary-black);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  background-color: var(--bs-white);
  height: 2px;
  width: 20px;
  transition: all 0.3s;
  backface-visibility: hidden;
  display: block;
  position: relative;
}
.navbar .navbar-toggler .navbar-toggler-icon:before,
.navbar .navbar-toggler .navbar-toggler-icon:after {
  content: "";
  background-color: var(--bs-white);
  width: 20px;
  height: 2px;
  transition: all 0.3s;
  backface-visibility: hidden;
  display: block;
  position: relative;
}
.navbar .navbar-toggler .navbar-toggler-icon:before,
.navbar .navbar-toggler .navbar-toggler-icon:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2.5px;
}
.navbar .navbar-toggler .navbar-toggler-icon:before {
  top: -5px;
}
.navbar .navbar-toggler .navbar-toggler-icon:after {
  top: 5px;
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  top: 0px;
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

/* Mobile - Transform navbar-collapse into offcanvas */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 114px;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 99;
    visibility: visible;
    opacity: 1;
    background-color: var(--bs-white);
    width: 100%;
    max-width: 100%;
  }

  /* Close button for mobile */
  .mobile-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--bs-primary-black);
    z-index: 10;
  }

  .navbar-nav {
    flex-direction: column;
    padding: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-nav .nav-link {
    padding: 1.25rem 1.5rem;
    margin: 0;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    border-radius: 0;
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .dropdown-item {
    padding: 1rem 1.5rem;
    background-color: var(--bs-white);
  }

  .navbar-nav .dropdown-item.sub-menu-link {
    padding: 0.5rem 1.5rem;
  }

  /* Make dropdown toggle clickable */
  .nav-item {
    border-bottom: 1px solid var(--bs-gray-200);
  }

  .nav-item:nth-last-child {
    border-bottom: none;
  }

  .navbar-nav .dropdown-toggle {
    cursor: pointer;
  }
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown .nav-item {
    border-bottom: none;
  }

  /* Force text color in mobile menu */
  body.home .navbar-collapse .navbar-nav .nav-link {
    color: var(--bs-primary-black);
  }

  body.home .navbar-collapse .dropdown-toggle::after {
    border-color: var(--bs-primary-black);
    margin-right: 15px;
  }

  body.inner-page .navbar-collapse .dropdown-toggle::after {
    border-color: var(--bs-primary-black);
    margin-right: 15px;
  }

  .navbar-collapse .dropdown-toggle[aria-expanded="false"]::after {
    content: "";
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
  }
  .navbar-collapse .dropdown-toggle[aria-expanded="true"]::after {
    content: "";
    transform: rotate(-135deg);
    transition: all 0.3s ease-in-out;
  }

  .navbar-collapse .navbar-nav .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 767.98px) {
  .navbar-nav {
    max-width: 540px;
  }
}

/* Desktop - Normal navbar behavior */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-nav {
    flex-direction: row;
  }

  .mobile-close-btn {
    display: none;
  }
}

@media (min-width: 768px) {
  .navbar-nav .dropdown-menu {
    min-width: 200px;
  }
}

/* ===== BACKDROP OVERLAY ===== */
.navbar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-backdrop.show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-backdrop {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--bs-white);
}

/* Homepage Hero - Full Width */
body.home .hero-section {
  min-height: 100vh;
  width: 100%;
  padding-top: 114px;
  margin: 0;
  position: relative;
  z-index: 1;
}

body.home .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

/* Inner Page Hero - Rounded with Margins */
body.inner-page .hero-section {
  min-height: 85vh;
  border-radius: 24px;
  margin: 114px 2rem 0rem 2rem;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: self-start;
  flex-direction: column;
  justify-content: center;
}

body.inner-page .hero-content {
  background: rgba(0, 0, 0, 0.45);
  text-align: left;
  max-width: 800px;
  width: 100%;
  padding: 2rem 3rem;
  min-height: 85vh;
}

body.page-template-page-quizpage {
  margin: 114px 0rem 0rem 0rem;
}

@media (max-width: 991.98px) {
  body.inner-page .hero-section {
    margin: 114px 0rem 0rem 0rem;
    border-radius: 0px;
  }

  body.inner-page .hero-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  body.inner-page .hero-content {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section .container {
    padding-right: 0 !important;
  }

  body.inner-page .hero-section .container {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.inner-page.page-template-page-staticpage .container {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  body.inner-page .hero-content {
    padding: 1.5rem 0rem 1.5rem 1rem;
  }

  .search-container .card_light {
    border-radius: 20px 0 0 20px;
  }
}

/* ===== 404 PAGE HERO SECTION ===== */
.container-404 {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 85vh;
  background: linear-gradient(
    135deg,
    rgba(44, 95, 93, 0.85) 0%,
    rgba(26, 58, 57, 0.9) 100%
  );
  z-index: 2;
}

.container-404 .content-wrapper {
  max-width: 700px;
  position: relative;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
}

.map-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.map-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--bs-white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -5px;
  text-shadow: 2px 2px 0 var(--bs-primary-black);
}

@media (max-width: 768.98px) {
  .content-wrapper {
    padding: 30px 20px;
  }

  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 576.98px) {
  .map-icon {
    width: 80px;
    height: 80px;
  }
  .error-code {
    font-size: 60px;
    letter-spacing: 0.5px;
  }
  .container-404 .content-wrapper .btn {
    width: 100%;
  }
}

/* ===== STATIC PAGE HERO SECTION ===== */

body.inner-page.page-template-page-staticpage .hero-section {
  min-height: auto;
  border-radius: 0px;
  margin: 114px 0rem 0rem 0rem;
  overflow: visible;
}
/* ===== Video styles ===== */

body.home .hero-section .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.video-background {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  height: calc(100vh - 114px);
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
.landing-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: bottom center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ===== SEARCH CONTAINER ===== */
.search-container {
  max-width: 630px;
  width: 100%;
}

.section-spacer {
  padding: 50px 0px;
}

.static-page-top {
  padding-top: 50px;
}

@media screen and (min-width: 992px) {
  .section-spacer {
    padding: 100px 0px;
  }
  body.home .hero-content .space-page-title {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body.inner-page .hero-content .space-page-title {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .static-page-top {
    padding-top: 100px;
  }
}

.card_dark {
  border-radius: 20px 0px 0px 20px;
  background-color: rgba(24, 24, 38, 0.7);
}

.card_light {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

@media (min-width: 767.98px) {
  .newsletter-input {
    max-width: 60%;
    width: 100%;
  }
  .newsletter-button {
    max-width: 40%;
    width: 100%;
  }
}

.stay-in-loop {
  max-width: 550px;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 575.98px) {
  .newsletter-input,
  .wpcf7-form-control-wrap {
    margin-bottom: 1rem;
  }
}

/* Footer */
.quickLinks {
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .quickLinks {
    justify-content: space-around;
  }
}

.quickLinks .accordion-item {
  border: 0px;
}

@media screen and (min-width: 768px) {
  .quickLinks .collapse:not(.show) {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .quickLinks {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 575.98px) {
  .main-footer {
    padding: 50px 0px;
  }
}

.social-icons-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .social-icons-container {
    gap: 15px;
  }
  .footer-logo img {
    width: 80%;
    height: auto;
  }
}
.social-icons {
  background-color: var(--bs-primary-black);
  color: var(--bs-white);
  border-radius: var(--bs-border-radius-2xl);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.social-icons:hover {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}

.partners {
  background-color: #e8e8e9;
  padding: 50px 0;
}
.partners .body-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.partner-logo {
  display: inline-block;
  margin: 0 20px;
}

@media (max-width: 767.98px) {
  .partners {
    padding: 50px 0 100px 0;
  }
  .partner-logo {
    margin: 0 10px;
  }
}

.footer-cta .btn {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-menu {
  padding: 0;
  margin: 0;
}

.footer-menu .footer-menu-item {
  list-style: none;
  margin-bottom: 10px;
}

.footer-menu .footer-menu-item .footer-link {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none !important;
}

/* wpcf7-form-control */
.newsletter-fields .wpcf7-submit {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  border-radius: var(--bs-border-radius);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-fields .wpcf7-submit:hover {
  background-color: var(--bs-secondary-600);
  color: var(--bs-white);
}

.newsletter-fields p {
  display: flex;
  align-items: start;
  gap: 15px;
}

@media screen and (max-width: 575.98px) {
  .newsletter-fields p {
    display: block;
  }
  .wpcf7-form-control-wrap .wpcf7-text {
    margin-bottom: 10px;
    width: 100%;
  }
  .newsletter-fields .wpcf7-submit {
    width: 100%;
  }
}
.newsletter-form label {
  font-size: 20px;
  color: var(--bs-white);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}
.newsletter-cf7-form .wpcf7 form.invalid .wpcf7-response-output {
  margin: 0px !important;
}
.newsletter-cf7-form .wpcf7-response-output {
  background-color: rgba(24, 24, 38, 0.6);
  color: var(--bs-red);
  padding: 0.5em 1em !important;
  border-radius: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wpcf7-not-valid-tip {
  font-size: 1.2em;
  margin-top: 10px;
  margin-bottom: 15px;
}

.wpcf7-spinner {
  background-color: var(--bs-primary);
  margin: 0px auto 0 auto;
  display: flex;
  min-width: 24px;
}

@media screen and (max-width: 575.98px) {
  .wpcf7-spinner {
    margin: 20px auto 0 auto;
  }
}

.wpcf7-form-control-wrap .wpcf7-text {
  width: 100%;
}

.sticky-mindtrip {
  position: fixed;
  left: auto;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
}

.sticky-mindtrip .cta {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sticky-mindtrip .cta:hover {
  background-color: var(--bs-primary-600);
}

@media screen and (max-width: 576.98px) {
  .sticky-mindtrip .cta {
    width: 50px;
    height: 50px;
  }
}

/* Accordion */
@media screen and (max-width: 767.98px) {
  .quickLinks .accordion-button {
    padding: 15px 0;
    display: flex !important;
    justify-content: space-between;
  }
}
.accordion-button:focus {
  box-shadow: none;
}
.quickLinks .accordion-button:not(.collapsed) {
  color: var(--bs-primary-black);
  background-color: var(--bs-white);
  box-shadow: none;
  border: none;
}

.quickLinks .accordion-button::after {
  content: "";
  width: 6px;
  height: 6px;
  border: solid var(--bs-primary-black);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  background-image: none;
  margin-left: 10px;
}
.quickLinks .accordion-button:not(.collapsed)::after {
  transform: rotate(-136deg);
}

/* Breadcrumb */
.breadcrumb-nav {
  border: 1px solid var(--bs-white);
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.breadcrumb-nav a {
  color: var(--bs-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.breadcrumb-nav a:hover {
  opacity: 0.6;
}

.breadcrumb-nav .breadcrumb-item {
  font-size: 16px;
  color: var(--bs-white);
  font-weight: 300;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 20px;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  width: 2px;
  height: 2px;
  border: solid var(--bs-white);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin: 6px;
  right: 12px;
  position: relative;
  transform: rotate(-45deg);
}

.breadcrumb-nav .breadcrumb-item.active {
  font-weight: 500;
}
.static-page-top .breadcrumb-nav {
  border-color: #d1d1d4;
}
.static-page-top .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  border-color: var(--bs-primary-black);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.custom-skewed-box {
  background-color: #4a90e2; /* A nice blue color */
  width: 100%;
  height: auto;
  min-height: 500px;
  /* Apply a standard border-radius to all corners first */
  border-radius: 30px;

  /* 
    Define a custom shape using clip-path:
    We define 5 points. The bottom-right corner is pulled inward (e.g., 20px from the edge) 
    to create the slanted edge, overriding the standard border-radius at that specific corner.
  */
  clip-path: polygon(
    0 15px,
    /* Top-left corner start point (y-axis offset for border-radius visual) */
      15px 0,
    /* Top-left corner end point (x-axis offset) */ calc(100% - 15px) 0,
    /* Top-right corner start point (x-axis offset) */ 100% 15px,
    /* Top-right corner end point (y-axis offset) */ 100% calc(100% - 470px),
    /* Right side up to the 'skew' point */ calc(100% - 90px) 100%,
    /* The bottom 'skew' point (adjust '30px' for how much it cuts in) */ 20px
      100%,
    /* Bottom-left corner end point (x-axis offset) */ 0 calc(100% - 15px)
      /* Bottom-left corner start point (y-axis offset) */
  );
}

.curved-image-wrapper {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.curved-image {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    95% 88%,
    90% 90%,
    85% 91%,
    80% 92%,
    75% 93%,
    70% 94%,
    65% 95%,
    60% 96%,
    55% 97%,
    50% 97.5%,
    45% 97%,
    40% 96%,
    35% 95%,
    30% 94%,
    25% 93%,
    20% 92%,
    15% 91%,
    10% 90%,
    5% 88%,
    0 85%
  );
}

@media (max-width: 767.98px) {
  .curved-image {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 90%,
      90% 93%,
      80% 95%,
      70% 96%,
      60% 97%,
      50% 97.5%,
      40% 97%,
      30% 96%,
      20% 95%,
      10% 93%,
      0 90%
    );
  }
}

@media (max-width: 480px) {
  .curved-image-wrapper {
    border-radius: 12px;
  }
}

/* ph-calendar */
#ph-calendar {
  min-height: 300px;
}

/* Handle large forms */
#ph-form {
  max-height: 80vh;
  overflow-y: auto;
}

@media (min-width: 1200px) {
  .left-image img {
    min-height: 450px;
  }
  .right-image img {
    min-height: 450px;
  }
}

/* TeamSwiper Carousel */

/* .team-picture {
  height: 300px;
}

.team-picture img {
  max-height: 300px;
}

.team-picture-mobile {
  max-height: 300px;
} */

/* Bob Member */
/* .bod-picture {
  height: 300px;
}
.bod-picture img {
  max-height: 300px;
}
.bod-picture-mobile {
  max-height: 280px;
} */

@media (max-width: 575.98px) {
  .container-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.card-thumb {
  height: 230px;
}

.blog-card-thumb,
.booking-card-thumb {
  height: 250px;
}

/* Trip Planner */
.trip_plannerSwiper .swiper-wrapper {
  display: flex;
  transition-timing-function: ease-out;
}
/* Add transform-style to enable proper 3D transforms */
.trip_plannerSwiper .swiper-slide {
  height: auto;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Hover effect: Only the hovered card gets shadow, others move down */
.trip_plannerSwiper .swiper-wrapper:hover {
  /* overflow: visible; */
  transform: translateY(0);
  z-index: 10;
}

.trip_plannerSwiper .swiper-slide:hover .tripplanner-card-item {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05),
    0 70px 34px -40px rgba(0, 0, 0, 0.4);
}

/* Move other cards down when one is hovered */
.trip_plannerSwiper:has(.swiper-slide:hover) .swiper-slide:not(:hover) {
  transform: translateY(20px);
}

/* Remove shadow from non-hovered cards */
.trip_plannerSwiper:has(.swiper-slide:hover)
  .swiper-slide:not(:hover)
  .tripplanner-card-item {
  box-shadow: none;
}

.trip-planner-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--bs-border-radius-md);
  transition: transform 0.4s ease;
}

.tripplanner-card-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--bs-border-radius-md);
  transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* .tripplanner-card-item:hover {
  transform: translateY(-20px);
  cursor: pointer;
} */

.tripplanner-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 38, 0.8) 34.48%,
    rgba(24, 24, 38, 0) 100%
  );
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 24px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.tripplanner-card-item:hover .tripplanner-card-content {
  opacity: 1;
  pointer-events: auto;
}

.tripplanner-card-content .trip-card-title-hover {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.tripplanner-card-item:hover .tripplanner-card-content .trip-card-title-hover {
  opacity: 1;
  transform: translateY(0);
}

.tripplanner-card-content .trip-desc {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.tripplanner-card-item:hover .tripplanner-card-content .trip-desc {
  opacity: 1;
  transform: translateY(0);
}

.tripplanner-card-content .mindtrip-button {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.tripplanner-card-item:hover .tripplanner-card-content .mindtrip-button {
  opacity: 1;
  transform: translateY(0);
}

.trip-card-title {
  border-radius: 0 0 20px 20px;
  text-align: center;
  padding: 24px 15px;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transition: all 0.3s ease;
}
.tripplanner-card-item:hover .trip-card-title {
  opacity: 0;
  transform: translateY(20px);
  z-index: 0;
}

@media (min-width: 576px) {
  .tripplanner-card-item .tripplanner-card-content .trip-card-title {
    padding: 24px 20px;
    font-size: 20px;
  }
}

/* Swiper pagination */
.trip_plannerSwiper .swiper-pagination {
  bottom: 0px;
  position: static;
  font-weight: 600;
}
.trip_plannerSwiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  opacity: 1;
  border: 2px solid #a3a3a8;
}
.trip_plannerSwiper
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
.trip_plannerSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--bs-primary-black);
  border-color: var(--bs-primary-black);
}
/* Swiper navigation  */
.trip_plannerSwiper .swiper-pagination-fraction {
  width: auto;
  margin: 0 20px;
}

.trip_plannerSwiper .trip-swiper-button-next,
.trip_plannerSwiper .trip-swiper-button-prev {
  width: calc(var(--swiper-navigation-size) / 44 * 40) !important;
  height: calc(var(--swiper-navigation-size) / 44 * 40) !important;
  background-color: #b4d7c3;
  color: var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 0px;
}

/* ===== Blog Pagination ===== */
.page-numbers {
  display: flex;
  align-items: center;
}

.page-numbers li {
  list-style: none;
  margin: 0 15px;
}
.page-numbers li a {
  font-weight: 300;
}
.page-numbers li a span.material-symbols-outlined {
  line-height: 1.5;
}
.page-numbers li a.current {
  font-weight: 500;
}
.page-numbers li a.next,
.page-numbers li a.prev {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--bs-primary-black);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--bs-primary-black);
}
.page-numbers li a.next:hover,
.page-numbers li a.prev:hover {
  background-color: var(--bs-primary-black);
  color: var(--bs-white);
}
/* ===============
   Start Explore Card Section
  ================ */
.explore-card {
  border-radius: var(--bs-border-radius-md);
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.3s ease;
}
.explore-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.explore-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 38, 0.3) 21.39%,
    rgba(24, 24, 38, 0) 59.95%
  );
  z-index: 0;
}
.explore-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

#exploreActivityCard {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #exploreActivityCard img {
    min-height: 540px;
  }
  #explorePlanYourTripCard img {
    min-height: 340px;
  }

  /* #exploreDiningCard {
    width: 90%;
  }
  .only_explore {
    padding-left: 40px;
  }*/
}
@media (min-width: 992px) {
  #exploreAboutUsCard {
    width: 90%;
    margin-left: auto;
  }
  #exploreAboutUsCard img {
    min-height: 380px;
  }
}

@media (max-width: 991.98px) {
  .explore-card {
    max-height: 450px;
  }
}
/* Explore Swiper */
.exploreSwiper .swiper-slide {
  width: 270px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.exploreSwiper .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 20px;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 38, 0.3) 21.39%,
    rgba(24, 24, 38, 0) 59.95%
  );
}

/* Navigation and Pagination Container */
.exploreSwiper .swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}

/* Navigation Buttons */
.exploreSwiper .explore-swiper-button-prev,
.exploreSwiper .explore-swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 50%;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exploreSwiper .explore-swiper-button-prev:hover,
.exploreSwiper .explore-swiper-button-next:hover {
  background: var(--bs-primary-600);
}

/* Fraction Pagination */
.exploreSwiper .swiper-pagination {
  position: static;
  width: auto;
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-primary-black);
  min-width: 50px;
  text-align: center;
}

/* ===============
   End Explore Card Section
  ================ */
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #eeba2b 94%, #0000) top/8px 8px
      no-repeat,
    conic-gradient(#0000 30%, #eeba2b);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
/* ============================ 
  Start New Hidden Gems Section
  ============================= */
/* Swiper Container Settings */
.hidden-gems-swiper {
  width: 100%;
  padding-bottom: 30px;
}

/* Swiper Slide (Card) Base Styles - DESKTOP */
.hidden-gems-swiper .swiper-slide {
  height: 400px;
  flex-shrink: 0 !important;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* overflow: hidden; for skew effect */

  /* Desktop Closed State */
  width: 100px;
  margin-right: 20px;
  cursor: grab;
}

/* Desktop Expanded State */
.hidden-gems-swiper .swiper-slide.is-expanded {
  width: 650px;
  cursor: auto;
}

/* Card Wrapper and Content Styling */
.hidden-gems-swiper .card-wrapper {
  display: flex;
  height: 100%;
}

/* Card Wrapper Styling for Desktop */
@media (min-width: 768px) {
  .hidden-gems-swiper .card-wrapper {
    transform: skewX(-8deg);
  }
  .hidden-gems-swiper .side-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.hidden-gems-swiper .card-content {
  flex-shrink: 0;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* transition: width 0.5s ease-in-out, border-radius 0.5s ease-in-out; */
}

/* The side content block */
.hidden-gems-swiper .side-content {
  flex-shrink: 0;
  width: 0;
  padding: 0;
  opacity: 0;
  /* transition: 0.5s ease-in-out, opacity 0.3s 0.2s, padding 0.5s; */
  background-color: transparent;
  border-radius: 0 20px 20px 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Side content when card is expanded (Desktop) */
.hidden-gems-swiper .swiper-slide.is-expanded .side-content {
  width: 300px;
  padding: 30px;
  opacity: 1;
  transform: skewX(8deg);
  left: 15px;
  position: relative;
}

/* The main card portion when the slide is expanded (Desktop) */
.hidden-gems-swiper .swiper-slide.is-expanded .card-content {
  width: 350px;
  border-radius: 20px;
}

.hidden-gems-swiper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: skewX(8deg) scale(1.5);
  transition: all 1s ease-in-out;
}

.hidden-gems-swiper .swiper-slide.is-expanded .card-content .card-image {
  transform: skewX(8deg) scale(1.3);
  transition: all 1s ease-in-out;
}

.hidden-gems-swiper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 8.58%,
    rgba(0, 0, 0, 0.3) 85.34%
  );
  color: var(--bs-white);
}

/* Vertical Text Container */
.hidden-gems-swiper .vertical-text-wrapper {
  position: absolute;
  left: 35px;
  bottom: 70px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  max-width: 200px;
  color: var(--bs-white);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s, opacity 0.5s;
}

/* Hide the rotated title when the card expands */
.hidden-gems-swiper .swiper-slide.is-expanded .vertical-text-wrapper {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* --- Card Arrow Link (Clickable trigger) --- */
.hidden-gems-swiper .arrow-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #d65365;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Change arrow direction from ↓ to ↑ when card is expanded */
.hidden-gems-swiper .arrow-link .arrow-icon {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.hidden-gems-swiper .swiper-slide.is-expanded .arrow-link {
  background-color: var(--bs-white);
  color: var(--bs-golden-bridge);
}

.hidden-gems-swiper .swiper-slide.is-expanded .arrow-link .arrow-icon {
  transform: rotate(90deg);
  /* Makes the ↓ look like an ↑ for collapse */
}

/* --- Custom Navigation Footer (Counter + Arrows) --- */
.hidden-gems-section .nav-button {
  background-color: var(--bs-golden-bridge);
  color: var(--bs-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
}
.hidden-gems-section .nav-button:hover {
  background-color: var(--bs-golden-bridge-400);
  color: var(--bs-white);
}

.hidden-gems-section .slide-counter {
  font-weight: 500 !important;
}

/* --- Responsiveness (Mobile/Tablet < 767.98px) --- */
@media (max-width: 767.98px) {
  /* Changed breakpoint from 992px to 767.98px */

  /* Navigation at the bottom center (for mobile) */
  .hidden-gems-section .swiper-navigation-footer.mobile-nav-only {
    margin-top: 1.5rem;
  }

  /* Mobile Slide/Card Changes: Content Below Image */
  .hidden-gems-swiper .swiper-slide {
    width: 280px;
    height: 350px;
    margin-right: 15px;
    left: 0%;
  }

  .hidden-gems-swiper .swiper-slide.is-expanded {
    width: 300px;
    height: auto;
    /* max-height: 100vh; */
  }

  .hidden-gems-swiper .card-wrapper {
    flex-direction: column;
    height: auto;
  }

  /* Image Section (Card Content) */
  .hidden-gems-swiper .card-content {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    transform: skewX(-8deg);
  }

  /* Side Content Section (Now Below Image) */
  .hidden-gems-swiper .side-content {
    width: 100%;
    height: auto;
    max-height: 0;
    padding: 0px;
    border-radius: 0px;
    opacity: 0;
    /* transition: max-height 0.6s ease-in-out, opacity 0.4s, padding-top 0.6s 0.2s,
      padding-bottom 0.6s 0.2s; */
    overflow: hidden;
  }

  .hidden-gems-swiper .swiper-slide.is-expanded .card-content {
    width: 100%;
    border-radius: 20px;
  }

  .hidden-gems-swiper .swiper-slide.is-expanded .side-content {
    max-height: 500px;
    width: 100%;
    padding: 30px 20px;
    opacity: 1;
    transform: none;
    left: -15px;
  }

  .hidden-gems-swiper .side-content .btn {
    width: 100%;
  }

  /* Arrow Link repositioning for mobile (centered below the image) */
  .hidden-gems-swiper .arrow-link {
    left: auto;
    right: 15px;
    bottom: 20px;
  }
  .hidden-gems-swiper .swiper-slide .arrow-link .arrow-icon {
    transform: rotate(180deg);
  }
  .hidden-gems-swiper .swiper-slide.is-expanded .arrow-link .arrow-icon {
    transform: rotate(0deg);
  }

  /* Reset vertical text on mobile */
  /* .vertical-text-wrapper {
    transform: translate(-50%, -50%) rotate(0deg);
  } */
}

/* ============================ 
  End New Hidden Gems Section
  ============================= */
/* ================
    Settle In and Feel at Home
=================== */
.trip-book-form #ripe-search-widget {
  border: 0px !important;
}
.trip-book-form #ripe-search-widget .widget-container {
  max-width: 100% !important;
}
@media (max-width: 576px) {
  .settle-in-section .section-header .btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* Navigation and Pagination Container */
.feelAtHomeSwiper .swiper-controls {
  gap: 20px;
  z-index: 10;
}

/* Navigation Buttons */
.feelAtHomeSwiper .feel-swiper-button-prev,
.feelAtHomeSwiper .feel-swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: var(--bs-napa-wine);
  color: var(--bs-white);
  border: 0px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feelAtHomeSwiper .feel-swiper-button-prev:hover,
.feelAtHomeSwiper .feel-swiper-button-next:hover {
  background: var(--bs-napa-wine-400);
  color: var(--bs-white);
}

/* Fraction Pagination */
.feelAtHomeSwiper .swiper-pagination {
  position: static;
  width: auto;
  font-size: 16px;
  font-weight: 600;
  min-width: 50px;
  text-align: center;
}
/* --- QUIZ STYLES --- */
.quiz-container {
  flex-grow: 1;
}

/* Card Styling & Selection */
.option-card {
  background: var(--bs-white);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  position: relative;
  /* border: 2px solid transparent; */
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.option-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.option-body {
  padding: 24px 15px;
  text-align: center;
  color: var(--bs-primary-black);
}

.option-card.selected {
  background-color: var(--bs-dirty-dark-green);
  /* border-color: var(--bs-primary); */
}

.option-card.selected .option-body {
  color: var(--bs-white);
}

.check-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bs-primary);
  color: var(--bs-primary-black);
  border-radius: 50%;
  padding: 5px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 1.3;
  display: none;
}

.option-card.selected .check-icon {
  display: block;
}

/* Buttons & Footer */
.btn-custom-next {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  font-weight: 700;
  border: 2px solid transparent;
  padding: 10px 20px;
  transition: all 0.3s;
}

.btn-custom-next:hover {
  background-color: var(--bs-white);
  border-color: var(--bs-white);
  color: var(--bs-primary-black);
}

.btn-custom-next:disabled {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-custom-back {
  border: 2px solid var(--bs-white);
  color: var(--bs-white);
  padding: 10px 20px;
  background: transparent;
}
.btn-custom-back:hover {
  background-color: var(--bs-white);
  color: var(--bs-primary-black);
}

@media (min-width: 768px) {
  .btn-custom-next,
  .btn-custom-back {
    max-width: 174px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .btn-finished {
    padding: 10px 15px;
  }
}

/* ============== RESULT SCREEN STYLES =============== */

#result-screen {
  /* Styles for the result screen */
  /* position: fixed;
  top: 0;
  left: 0; */
  background-size: cover;
  background-position: center;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.result-overlay-panel {
  /* Styles for the dark overlay text box */
  background-color: rgba(24, 24, 38, 0.75);
  opacity: 1;
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  color: var(--bs-white);
  min-height: 85vh;
}

.result-heading {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.result-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.result-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .result-overlay-panel {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 2rem;
  }

  .result-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 576.98px) {
  #result-screen {
    background-image: none !important;
  }
  .result-overlay-panel {
    background-color: transparent;
    min-height: auto;
    color: var(--bs-primary-black);
    padding: 2.5rem 1rem;
  }
  .page-counter.subtitle3 {
    font-weight: 600 !important;
  }
  .btn-custom-rec {
    width: 100%;
  }
}

/* Utility & Animation */
.fade-in-up {
  animation: fadeInUp 0.5s ease-in-out;
}

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

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

.d-visible {
  display: block !important;
  opacity: 1 !important;
}
/* ===============
   Start Explore Card Section
  ================ */
.trip_plan_card {
  border-radius: var(--bs-border-radius-md);
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.3s ease;
  height: 350px;
}
.trip_plan_card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.trip_plan_card_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 20.86%,
    rgba(0, 0, 0, 0) 57.72%
  );
}
@media (max-width: 991.98px) {
  .trip_plan_card {
    height: 300px;
  }
}
@media (max-width: 767.98px) {
  .trip_plan_card:hover {
    transform: none;
    box-shadow: none;
  }
}
/* Navigation and Pagination Container */
.tripItinerarySwiper .swiper-controls {
  gap: 20px;
  z-index: 10;
}

/* Navigation Buttons */
.tripItinerarySwiper .trip-planning-swiper-button-prev,
.tripItinerarySwiper .trip-planning-swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: var(--bs-primary-black);
  color: var(--bs-white);
  border: 0px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tripItinerarySwiper .trip-planning-swiper-button-prev:hover,
.tripItinerarySwiper .trip-planning-swiper-button-next:hover {
  background: var(--bs-primary-black-600);
  color: var(--bs-white);
}

/* Fraction Pagination */
.tripItinerarySwiper .swiper-pagination {
  position: static;
  width: auto;
  font-size: 16px;
  font-weight: 600;
  min-width: 50px;
  text-align: center;
}
/* Quiz Loader */
.quiz-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.quiz-loader .spinner {
  width: 60px;
  height: 60px;
  border: 6px solid var(--bs-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinLoader 0.8s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}
