
/* Fonts */

@font-face {
  font-family: 'Baskerville';
  src: url('/fonts/Baskerville-Normal-Bold.ttf.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Adam';
  src: url('/fonts/Adam-Light.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel';
  src: url('/fonts/Cinzel-Regular.otf') format('ttf');
  font-weight: normal;
  font-style: normal;
}


/* Style for the mount icon */
.mount-icon {
  width: 70px; /* Adjust the size */
  height: auto; /* Maintain aspect ratio */
  fill: white; /* Apply white color to the SVG (if supported) */
  margin-bottom: 10px; /* Add space between the icon and the title */
  filter: brightness(0) invert(1); /* Ensure white appearance if SVG doesn't inherit color */
}

/* MAIN TITLE */
.main-title {
  font-family: 'Walkway SemiBold', sans-serif;
  font-weight: 500;
  font-size: 4rem;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); /* Add shadow */
  /* Smooth transition */
  transition: transform 0.3s ease-in-out;
  margin-bottom: 1.5rem;
}

.main-title:hover {
  /* Scale slightly larger */
  animation: bounce 0.4s ease-in-out;
}

/* MAIN TAGLINE */

.main-tagline {
  font-family: 'Oxygen', serif;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.intro-quote {
  margin-top: 1.5rem;
  margin-left: 3em;
  margin-right: 3em;
  font-size: 3.5rem;
  font-family: 'Baskerville', serif;
  font-weight: lighter;
  text-align: center;
}

@media (max-width: 600px) {
  .intro-quote {
    margin-top: 0.5rem;
    margin-bottom: 0rem;
    margin-left: 1.5em;
    margin-right: 1.5em;
    font-size: 2.4rem;
  }
}

.introduction {
  font-family: 'Oxygen', serif;
  font-size: 20px;
}

/* Top navigation */
.main-nav {
  position: fixed;
  top: 1rem;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-inner {
  gap: 1rem;
  width: 100%;
  background-color: rgba(11, 18, 32, 0.55);
  border-radius: 35px;
  padding: 0.65rem 2.5rem 0.65rem 3rem;
  backdrop-filter: saturate(180%) blur(25px);
  box-shadow: 0 10px 20px rgba(11, 18, 32, 0.15);
  pointer-events: auto;
  transition: border-radius 0.25s ease;
}

.nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: auto;
  min-height: 48px;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-toggle {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  color: #fff;
}

.nav-toggle-line {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.nav-brand-icon {
  width: 32px;
  height: auto;
  margin-right: 0.5rem;
  filter: brightness(0) invert(1);
}

.nav-brand {
  margin-left: 0.75rem;
}

.nav-brand-text {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-pills {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.main-nav .nav-link,
.nav-cta {
  white-space: nowrap;
}


.main-nav .nav-link {
  color: #fff !important;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 40px;
  border: none;
  appearance: none;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link:active {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff !important;
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  background-color: #fff;
  color: #0b1220;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.nav-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0b1220;
  text-decoration: none;
}

.header-switchers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.85rem 1rem;
  }

  .nav-inner.nav-inner-expanded {
    gap: 0.75rem;
  }

  .nav-head {
    width: 100%;
    justify-content: space-between;
    padding: 0 0.25rem;
  }

  .nav-brand {
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.25s ease;
    padding: 0;
    border-radius: 24px;
    background-color: transparent;
  }

  .nav-menu.is-open {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(11, 18, 32, 0.95);
    padding: 1rem 1.25rem 1.25rem;
  }

  .nav-pills {
    flex-direction: column;
    width: 100%;
  }

  .nav-pills li {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .main-nav .nav-link {
    width: 100%;
    text-align: left;
  }

  .header-switchers {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
}

section[id],
main [id] {
  scroll-margin-top: 140px;
}

.nav-dropdown .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.82);
  border: none;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  min-width: 165px;
  padding: 0.35rem 0;
  margin-top: 0.4rem;
}

.nav-dropdown .dropdown-item {
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.season-icon {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  filter: brightness(0) invert(1);
}

.season-label {
  display: inline-flex;
  align-items: center;
}

.season-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-dropdown .dropdown-item.active,
.nav-dropdown .dropdown-item.active:focus,
.nav-dropdown .dropdown-item.active:hover {
  background-color: transparent;
  color: #fff;
  font-weight: 600;
}

.flag-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Bounce animation */

@keyframes bounce {
  0% {
    transform: scale(1.0); /* Start and end at normal size */
  }
  50% {
    transform: scale(0.95); /* Slightly larger at the midpoint */
  }
  100% {
    transform: scale(1.0);
  }
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.ken-burns-bg {
  animation:ken-burns  8s linear infinite;
  width: 100%;
  height: 100%;
}

.carousel-control-prev, .carousel-control-next {
  z-index: 3; /* Higher than title-container's z-index:2 */
}
.title-container {
  pointer-events: none; /* Allow clicks to pass through the overlay (text/icon won't be clickable, but arrows will) */
}

.title-container {
  flex-grow: 1; /* Takes up remaining space between top and bottom */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  text-align: center; /* Centers text alignment */
}

.pill-navigation {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Solid background */
  padding: 10px; /* Add padding inside the container */
  box-sizing: border-box; /* Ensures padding is included in the width */
}

/* Stats Section */
.stats-section {
  margin: 20px 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* Space between items */
}

.practical-card {
  border: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: saturate(180%) blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #0f172a;
  display: flex;
}

.practical-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.practical-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  padding: 2.5rem;
}

.practical-card .card-title {
  font-size: 1.0rem;
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.85);
}

.practical-card .card-text {
  margin-bottom: 0;
  color: rgba(33, 37, 41, 0.92);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1rem;
  color: #555;
}

/* Gallery */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery .gallery-item {
  width: 300px;
}

.gallery .gallery-item a {
  display: block;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden; /* Ensures that content outside the square is hidden */
  border-radius: 10px; /* Optional: keeps rounded corners */
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover; /* Ensures the image fills the square while present */
  transition: transform 0.4s ease;
}

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

.gallery .gallery-item figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.section-heading {
  color: #0f172a;
  flex-wrap: nowrap;
}

.section-heading-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.section-heading-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.2);
}

.section-heading-cta {
  border-radius: 30px;
  padding: 0.4rem 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.3);
  text-decoration: none;
  color: #0b1220;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.section-heading-cta:hover {
  background: #0b1220;
  color: #fff;
  border-color: #0b1220;
}

@media (max-width: 576px) {
  .section-heading {
    flex-wrap: wrap;
  }

  .section-heading-cta {
    margin-top: 0.75rem;
  }
}

/* Dedicated gallery page */
.gallery-page-hero {
  padding: 10rem 1rem;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center;
}

.gallery-page-eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery-page-description {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.gallery-collection {
  padding: 3rem 0 4rem;
  background: #fff;
}


.gallery-collection .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1.5rem;
}

.gallery-collection .gallery-item {
  text-decoration: none;
  color: inherit;
  display: block;
  height: auto;
  align-self: start;
}

.gallery-collection .gallery-item.is-landscape {
  grid-column: span 2;
}

.gallery-collection .gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: auto;
  min-height: 0;
  box-shadow: 0 20px 30px rgba(2, 6, 23, 0.12);
}

.gallery-collection .gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

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

.gallery-collection .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.75) 100%);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-collection .gallery-caption span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.gallery-collection .gallery-item:hover .gallery-caption,
.gallery-collection .gallery-item:focus .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-collection .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .gallery-collection .gallery-caption {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .gallery-collection .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-collection .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-collection .gallery-item.is-landscape {
    grid-column: span 1;
  }
}

/* Container for the image-text section */
.image-text-section {
  display: flex;
  width: 100%;
  background-color: #F6F9FE;
  margin: 0;
  padding: 0;
}

.image-container {
  flex: 1; /* Takes up equal width as the text container */
  display: flex;
  width: 100%;
  max-height: 400px;
  align-items: center; /* Centers the image vertically */
  justify-content: center; /* Centers the image horizontally */
  border-radius: 10px;
  overflow: hidden; /* Ensures the image doesn’t overflow */
  object-fit: cover;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Image styling */
.image-container img {
  width: 100%; /* Ensures the image scales properly */
  height: 100%; /* Matches the height of the container */
  object-fit: cover; /* Keeps the image aspect ratio while filling the container */
  overflow: hidden; /* Ensures the image doesn’t overflow */
  transition: transform 0.4s ease;
}


/* Text container */
.text-container {
  flex: 1; /* Takes equal space as the image container */
  padding: 15px;
  display: flex;
  max-height: 400px;
  flex-direction: column;
  justify-content: center; /* Vertically center the text */
  text-align: left; /* Align text to the left */
  font-size: 20px;
  font-family: 'Oxygen', serif;
}


/* Responsive fixes */
@media (max-width: 768px) {
  .image-text-section {
    flex-direction: column;
  }
  .image-container,
  .text-container {
    width: 100%; /* Full width on smaller screens */
    flex: none; /* Disable height matching */
  }
}

/* CTA hero */
.cta-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 1.5rem;
  min-height: 500px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.75rem;
  color: #fff;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 600;
  max-width: 960px;
  margin: 0;
  text-shadow: 0 12px 45px rgba(2, 6, 23, 0.7);
}

.cta-subheading {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 960px;
  margin: 0;
  text-shadow: 0 12px 45px rgba(2, 6, 23, 0.7);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #4facfe, #00f2fe);
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1rem 3rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 0px 35px rgba(93, 147, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0px 55px rgba(93, 147, 255, 0.75);
  color: #fff;
  text-decoration: none;
}


.cta-form-wrapper {
  width: 100%;
  max-width: 720px;
  background: rgba(2, 6, 23, 0.65);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 35px 65px rgba(1, 8, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.cta-form-wrapper--success {
  min-height: 340px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-form-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-form-grid .cta-form-field {
  flex: 1;
  min-width: 220px;
}

.cta-form-field {
  position: relative;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.cta-form-field input,
.cta-form-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  padding: 1.3rem 1.25rem 0.65rem;
  font-size: 1rem;
  font-weight: 500;
  resize: vertical;
}

.cta-form-field textarea {
  min-height: 130px;
  padding-top: 1.75rem;
}

.cta-form-field input:focus,
.cta-form-field textarea:focus {
  outline: none;
}

.cta-form-field:focus-within {
  border-color: rgba(79, 172, 254, 0.8);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.15);
}

.cta-form-label {
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}

.cta-form-field input:not(:placeholder-shown) + .cta-form-label,
.cta-form-field input:focus + .cta-form-label,
.cta-form-field textarea:not(:placeholder-shown) + .cta-form-label,
.cta-form-field textarea:focus + .cta-form-label {
  transform: translateY(-0.6rem) scale(0.85);
  color: #86d6ff;
  opacity: 0.85;
}

.cta-form-footer {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-form-recaptcha {
  flex: 1 1 260px;
  min-height: 78px;
}

.cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 2.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(120deg, #60a5fa, #a855f7);
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 35px rgba(96, 165, 250, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-submit svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}

.cta-submit:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 25px 45px rgba(96, 165, 250, 0.45);
}

.cta-submit:hover svg {
  transform: translateX(4px);
}

.cta-form-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.15), rgba(2, 6, 23, 0.75));
  backdrop-filter: blur(8px);
}

.cta-form-success-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.65);
  max-width: 420px;
}

.cta-form-success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(147, 51, 234, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-form-success-icon svg {
  width: 54px;
  height: 54px;
  stroke: #86efac;
  stroke-width: 2.5;
  fill: none;
}

.cta-form-success-card circle {
  stroke: rgba(134, 239, 172, 0.4);
  stroke-width: 2;
  fill: transparent;
}

.cta-form-success-card path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-form-success-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cta-form-success-text {
  color: rgba(226, 232, 240, 0.85);
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 576px) {
  .cta-form-wrapper {
    padding: 2rem;
  }
  .cta-form-grid {
    flex-direction: column;
  }
  .cta-form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-submit {
    width: 100%;
    justify-content: center;
  }
  .cta-form-success-card {
    padding: 2rem 1.5rem;
  }
}

/* Reviews carousel */
.reviews-section {
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.2), rgba(15, 23, 42, 0.95)), #020617;
  color: #fff;
  padding: 5rem 1rem 4rem;
}

.reviews-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.reviews-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(250, 250, 255, 0.8);
  margin-bottom: 0.75rem;
}

.reviews-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.reviews-subtitle {
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 0;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
}


.reviews-window {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0.05, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 min(80%, 640px);
  padding: 2.5rem;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
  opacity: 0.35;
  transform: scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin: 0;
}

.review-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-quote {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.review-author-location {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.75);
}

.review-platform {
  display: inline-flex;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.65);
}

.reviews-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.reviews-nav:hover {
  background: rgba(79, 70, 229, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.reviews-nav-prev {
  left: 0;
}

.reviews-nav-next {
  right: 0;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.35);
  border: none;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-dot.is-active,
.reviews-dot:hover {
  background: #5D93FF;
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .review-card {
    flex-basis: 65%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .reviews-carousel {
    gap: 0.5rem;
  }

  .review-card {
    padding: 2rem;
  }
}

/* FAQ */
.faq-section {
  padding: 4rem 1rem;
  background: rgba(15, 23, 42, 0.04);
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.faq-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.faq-item .accordion-button {
  background: transparent;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: #0f172a;
}

.faq-item .accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 500;
}

.accordion-item:first-of-type .accordion-button,
  .accordion-item:first-of-type,
  .accordion-item:last-of-type .accordion-button.collapsed,
  .accordion-item:last-of-type {
    border-radius: 32px !important;
  }

/* Footer */
.site-footer {
  background: #0b1220;
  color: #f8fafc;
  padding: 3rem 1rem 1.5rem;
  margin-top: 1px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 240px;
}

.footer-brand .nav-brand-text {
  font-size: 1.25rem;
}

.footer-tagline {
  margin-top: 0.75rem;
  color: rgba(248, 250, 252, 0.8);
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.85);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }
}

/* Fullscreen 404 header */
.error-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('/header/chalet-header-3.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
