@charset "UTF-8";
/*
Theme Name: Combat
Description: Custom WordPress theme for Combat project
Text Domain: combat
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3c;
  background: #fff;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4.375rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  p {
    line-height: 1.7;
  }
}

a {
  color: #e67e22;
  transition: color 0.3s ease;
}
a:hover {
  color: #3a3a3c;
}

.text-center {
  text-align: center;
}

.text-large {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .text-large {
    font-size: 1.25rem;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 12px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 16px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
@media (min-width: 768px) {
  .row {
    margin: 0 -1rem;
  }
}

.col {
  flex: 1;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .col {
    padding: 0 1rem;
  }
}
.col-1 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-1 {
    flex: 0 0 8.333%;
  }
}
.col-2 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-2 {
    flex: 0 0 16.666%;
  }
}
.col-3 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-3 {
    flex: 0 0 25%;
  }
}
.col-4 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-4 {
    flex: 0 0 33.333%;
  }
}
.col-6 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-6 {
    flex: 0 0 50%;
  }
}
.col-8 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-8 {
    flex: 0 0 66.666%;
  }
}
.col-9 {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .col-9 {
    flex: 0 0 75%;
  }
}
.col-12 {
  flex: 0 0 100%;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid {
    gap: 2rem;
  }
}
.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--auto {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.site-header {
  background: #2a2a2a;
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.site-header .header-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .site-header .header-container {
    padding: 0 12px;
  }
}
@media (min-width: 1024px) {
  .site-header .header-container {
    padding: 10px 30px 0 0;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .site-logo {
  display: block;
}
.site-header .site-logo img {
  height: 50px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .site-header .site-logo img {
    height: 60px;
    padding-left: 15px;
  }
}
.site-header .site-title {
  display: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .site-header .site-title {
    display: block;
    font-size: 1.5rem;
  }
}

@media (max-width: 1040px) {
  .main-navigation {
    position: absolute;
    right: 0;
  }
}
@media (min-width: 768px) {
  .main-navigation {
    flex: 0 0 auto;
  }
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .main-navigation ul {
    gap: 1.5rem;
  }
}
@media (min-width: 1041px) {
  .main-navigation ul li.mobile-only {
    display: none;
  }
}
@media (max-width: 1040px) {
  .main-navigation ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100vh;
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 1.5rem 1.5rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 998;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.3s ease-out,
      visibility 0s 0.3s;
  }
  .main-navigation ul.active {
    transform: translateX(0);
    visibility: visible;
    transition:
      transform 0.3s ease-out,
      visibility 0s;
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.main-navigation a {
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1040px) {
  .main-navigation a {
    padding-left: 0;
    font-weight: bold;
  }
  .main-navigation a:hover {
    color: #fff;
  }
}
@media (min-width: 1041px) {
  .main-navigation a {
    display: inline-block;
    font-size: 1rem;
    border-bottom: none;
    padding: 0 0.75rem;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    border-bottom: none;
    transition: all 0.3s ease;
  }
  .main-navigation a:hover {
    color: #e67e22;
  }
  .main-navigation a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e67e22;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .main-navigation a:hover::after {
    transform: scaleX(1);
  }
}
.main-navigation a:last-child {
  border-bottom: none;
}
.main-navigation a.btn {
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .main-navigation a.btn {
    align-self: flex-start;
    width: auto;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 1041px) {
  .main-navigation a.btn {
    border-radius: 5px;
    padding: 10px 20px;
  }
  .main-navigation a.btn::after {
    display: none;
  }
  .main-navigation a.btn:hover {
    color: #fff;
  }
  .main-navigation a.btn:hover::after {
    transform: scaleX(0);
  }
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
@media (min-width: 1041px) {
  .menu-toggle {
    display: none;
  }
}

.hero-arrow-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 7rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 374px) {
  .hero-arrow-wrap {
    margin-top: 4.5rem;
  }
}
@media (min-width: 835px) {
  .hero-arrow-wrap {
    display: none;
  }
}

.medium-italic {
  font-style: italic;
  font-weight: 500;
}

section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  section {
    padding: 5rem 0;
  }
}
section:first-of-type {
  padding-top: calc(3rem + 60px);
}
@media (min-width: 768px) {
  section:first-of-type {
    padding-top: calc(4rem + 60px);
  }
}

.faq-section {
  background: #fff;
}
.faq-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .faq-section .container {
    padding: 0 12px;
  }
}
@media (min-width: 1024px) {
  .faq-section .container {
    padding: 0 16px;
  }
}
.faq-section .container {
  padding-left: 1.25rem;
}
@media (min-width: 1440px) {
  .faq-section .container {
    max-height: 850px;
    min-height: 0;
  }
}
.faq-section .container {
  padding-right: 1.25rem;
}
@media (min-width: 480px) {
  .faq-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .faq-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.faq-section h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 900;
}
@media (min-width: 768px) {
  .faq-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }
}
.faq-section .faq-intro {
  margin-bottom: 1.5rem;
  color: #3a3a3c;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (min-width: 800px) {
  .faq-section .faq-intro {
    margin-left: calc((100% - 800px) / 2);
    margin-right: auto;
  }
}
.faq-section .faq-accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}
.faq-section .faq-question {
  margin: 0;
}
.faq-section .faq-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
  cursor: pointer;
  transition: color 0.25s ease;
  line-height: 1.2;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .faq-section .faq-toggle {
    font-size: 1.2rem;
  }
}
.faq-section .faq-toggle:hover {
  color: #000;
}
.faq-section .faq-toggle__text {
  flex: 1 1 auto;
  display: block;
}
.faq-section .faq-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 4px;
  color: #e67e22;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  transition:
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.25s ease;
}
.faq-section .faq-panel {
  color: #3a3a3c;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  will-change: height;
  contain: layout;
}
.faq-section .faq-panel .faq-panel__inner {
  padding: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .faq-section .faq-panel .faq-panel__inner {
    padding-bottom: 1.25rem;
  }
}
.faq-section .faq-panel .faq-panel__inner > * {
  transform: translateY(6px);
  opacity: 0;
  transition:
    transform 0.35s ease-out,
    opacity 0.35s ease-out;
  will-change: transform, opacity;
}
.faq-section .faq-panel .faq-panel__inner > *:nth-child(2) {
  transition-delay: 30ms;
}
.faq-section .faq-panel .faq-panel__inner > *:nth-child(3) {
  transition-delay: 60ms;
}
.faq-section .faq-panel .faq-panel__inner > *:nth-child(4) {
  transition-delay: 90ms;
}
.faq-section .faq-panel p {
  margin: 0 0 1.5rem 0;
  max-width: 750px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .faq-section .faq-panel p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.faq-section .faq-panel p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-item.is-open .faq-toggle {
  color: #000;
}
.faq-section .faq-item.is-open .faq-toggle__icon {
  transform: rotate(180deg);
}
.faq-section .faq-item.is-open .faq-panel .faq-panel__inner > * {
  transform: translateY(0);
  opacity: 1;
}
.faq-section .faq-item.is-closing .faq-panel .faq-panel__inner > * {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out;
  transition-delay: 0ms !important;
}
@media (prefers-reduced-motion: reduce) {
  .faq-section .faq-toggle__icon,
  .faq-section .faq-panel,
  .faq-section .faq-panel > * {
    transition: none !important;
  }
}

.hero-section {
  color: #fff;
  text-align: left;
  min-height: 100vh;
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .hero-section {
    min-height: auto;
    padding: calc(60px + 2rem) 0 3rem;
  }
}
@media (min-width: 1280px) {
  .hero-section {
    min-height: 100vh;
    padding: calc(60px + 2rem) 3rem 3rem 0.5rem;
    align-items: flex-start;
  }
}
@media (min-width: 1440px) {
  .hero-section {
    min-height: 900px;
    max-height: 900px;
  }
}
@media (min-width: 1440px) {
  .hero-section {
    align-items: flex-start;
  }
  .hero-section .hero-inner {
    display: flex;
    align-items: flex-start;
    min-height: 100%;
  }
  .hero-section .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding-top: 12vh;
    padding-bottom: 0;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/IMG_1111.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-section::after {
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    width: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.hero-section .hero-overlay-fade {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 80px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0) 100%
  );
}
@media (min-width: 1024px) {
  .hero-section .hero-overlay-fade {
    display: block;
  }
}
.hero-section .hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: inherit;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-section .hero-media {
    padding: 0 1rem;
    max-width: 660px;
    margin-left: 0;
    margin-right: auto;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left !important;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 480px) {
  .hero-section .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .hero-section .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-section .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero-section .hero-headline {
  position: relative;
  margin: 0 0 2rem;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
}
@media (min-width: 480px) {
  .hero-section .hero-headline {
    padding: 1.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media (min-width: 768px) {
  .hero-section .hero-headline {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media (min-width: 835px) {
  .hero-section .hero-headline {
    max-width: 660px;
    padding: 1.5rem 1.25rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    z-index: 0;
  }
  .hero-section .hero-headline::before {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-section .hero-headline .hero-eyebrow,
  .hero-section .hero-headline .hero-title,
  .hero-section .hero-headline .hero-lead {
    position: relative;
    z-index: 1;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e67e22;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(0, 0, 0, 0.5);
  margin: 0 0 0.75rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
@media (min-width: 768px) {
  .hero-eyebrow {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
  }
}
.hero-eyebrow .mobile-br {
  display: inline;
}
@media (min-width: 768px) {
  .hero-eyebrow .mobile-br {
    display: none;
  }
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.04;
  margin: 0 0 1rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}

.hero-title .archery {
  display: inline-block;
  background: none;
  color: #fff;
  position: relative;
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  max-width: 52ch;
  margin: 0 0 2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.hero-text-block {
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(4px);
  padding: 1.25rem 1.35rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  max-width: 100%;
  margin: 0 0 2rem;
  box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .hero-text-block {
    padding: 1.75rem 2rem 2rem;
    border-radius: 22px;
    max-width: 860px;
  }
}
@media (min-width: 1024px) {
  .hero-text-block {
    max-width: 900px;
  }
}

.hero-eyebrow--lead {
  display: none;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  font-weight: bold;
  width: 100%;
}
@media (min-width: 835px) {
  .hero-buttons {
    align-items: flex-start;
    width: auto;
    margin-left: 2rem;
  }
}

.hero-btn-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  align-items: center;
}
.hero-btn-row .btn {
  width: 80%;
  max-width: 400px;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}
@media (max-width: 374px) {
  .hero-btn-row .btn {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    width: 75%;
  }
}
@media (min-width: 480px) {
  .hero-btn-row .btn {
    width: auto;
    max-width: none;
    margin-bottom: 0;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .hero-btn-row .btn {
    width: auto;
    max-width: none;
    margin-bottom: 0;
  }
}
@media (min-width: 480px) {
  .hero-btn-row {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (min-width: 835px) {
  .hero-btn-row {
    align-items: flex-start;
    width: auto;
  }
}

.scroll-arrow {
  color: #e67e22;
  font-size: 2.2rem;
  transition:
    color 0.2s,
    opacity 0.3s;
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-arrow:hover {
  color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
}
.scroll-arrow svg {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #e67e22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s,
    background 0.2s,
    bottom 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top.near-bottom {
  bottom: 10rem;
}
@media (min-width: 768px) {
  .scroll-to-top.near-bottom {
    bottom: 8rem;
  }
}
.scroll-to-top:hover {
  background: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.scroll-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  transform: rotate(180deg);
}

.archery-with-divider {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}
.archery-with-divider .hero-divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(-1.5rem - 3px);
  margin: 0 auto;
  width: calc(2rem * 2);
}
@media (min-width: 768px) {
  .archery-with-divider .hero-divider {
    width: calc(2rem * 3);
    bottom: calc(-2rem - 3px);
  }
}
@media (min-width: 1024px) {
  .archery-with-divider .hero-divider {
    width: calc(2rem * 4);
  }
}

.about-section {
  background: #f5f5f5;
}
.about-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 480px) {
  .about-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.about-section .about-content {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .about-section .about-content {
    max-width: 900px;
  }
}
@media (min-width: 768px) {
  .about-section .about-content {
    flex-direction: row;
    min-height: 500px;
    gap: 1rem;
  }
}
.about-section .about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .about-section .about-text {
    flex: 100%;
    padding: 4rem 0.5rem 4rem 0;
  }
}
.about-section .about-text h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .about-section .about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }
}
.about-section .about-text p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: none;
}
@media (min-width: 768px) {
  .about-section .about-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.about-section .about-text p:last-child {
  margin-bottom: 0;
}
.about-section .about-text .about-inline-image {
  display: block;
  clear: both;
  width: 100%;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 768px) {
  .about-section .about-text .about-inline-image {
    margin: 1.25rem 0 2rem;
  }
}
.about-section .about-text .about-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}
.about-section .about-image {
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  padding: 0 0 3rem;
}
@media (min-width: 768px) {
  .about-section .about-image {
    padding: 4rem 0 4rem 0.5rem;
  }
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: none;
}
.about-section .about-images {
  flex: 0 0 35%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-section .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.about-section .about-images .image-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
@media (min-width: 768px) {
  .about-section .about-images .image-item img {
    height: 240px;
  }
}
.about-section .about-images .image-item img:hover {
  filter: grayscale(0%);
}

.pricing-section {
  background: #2a2a2a;
}
.pricing-section h2 {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0 1.25rem;
  color: #fff;
}
@media (min-width: 768px) {
  .pricing-section h2 {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .pricing-section h2 {
    padding: 0 2rem;
  }
}
.pricing-section .pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .pricing-section .pricing-grid {
    gap: 2rem;
    max-width: 700px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .pricing-section .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.pricing-section .pricing-custom {
  margin-top: 3rem;
  padding-top: 2rem;
  position: relative;
  border-top: none;
}
.pricing-section .pricing-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 1px;
  background: #e67e22;
}
@media (min-width: 768px) {
  .pricing-section .pricing-custom {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e67e22;
  }
  .pricing-section .pricing-custom::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .pricing-section .pricing-custom {
    border-top: none;
  }
  .pricing-section .pricing-custom::before {
    display: block;
    width: 50%;
  }
}
.pricing-section .pricing-custom .custom-solutions {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .pricing-section .pricing-custom .custom-solutions {
    text-align: center;
  }
}
.pricing-section .pricing-custom .custom-solutions h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .pricing-section .pricing-custom .custom-solutions h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .pricing-section .pricing-custom .custom-solutions h3 .mobile-break {
    display: none;
  }
}
.pricing-section .pricing-custom .custom-solutions p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .pricing-section .pricing-custom .custom-solutions p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }
}
.pricing-section .pricing-custom .custom-solutions p strong {
  color: #e67e22;
  font-weight: 600;
}
.pricing-section .pricing-custom .custom-solutions .btn {
  display: inline-block;
  padding: 15px;
}
@media (min-width: 1024px) {
  .pricing-section .pricing-custom .custom-solutions .btn {
    margin: 0 auto;
  }
}
.pricing-section .price-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  display: flex;
  flex-direction: column;
  min-height: 450px;
}
@media (min-width: 768px) {
  .pricing-section .price-item {
    padding: 2.5rem 2rem;
  }
}
.pricing-section .price-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.pricing-section .price-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e67e22 0%, #3a3a3c 100%);
}
.pricing-section .price-item h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .pricing-section .price-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.pricing-section .price-item .price-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #3a3a3c;
}
.pricing-section .price-item .price-header .price {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .pricing-section .price-item .price-header .price {
    font-size: 2.5rem;
  }
}
.pricing-section .price-item .price-header .price-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .pricing-section .price-item .price-header .price-subtitle {
    font-size: 1.1rem;
  }
}
.pricing-section .price-item .price-header .price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 0.5rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .pricing-section .price-item .price-header .price-note {
    font-size: 0.9rem;
  }
}
.pricing-section .price-item .price-details {
  margin-top: auto;
  padding: 3rem 0 0;
}
.pricing-section .price-item .price-details .price-breakdown {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0 0 0.5rem 0;
}
@media (min-width: 768px) {
  .pricing-section .price-item .price-details .price-breakdown {
    font-size: 1rem;
  }
}
.pricing-section .price-item .price-details .price-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .pricing-section .price-item .price-details .price-note {
    font-size: 0.85rem;
  }
}
.pricing-section .price-item .description {
  text-align: left;
  flex-grow: 1;
  flex-shrink: 0;
}
.pricing-section .price-item .description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .pricing-section .price-item .description p {
    font-size: 1.1rem;
  }
}
.pricing-section .price-item .description .features {
  list-style: none;
  padding-left: 0;
}
.pricing-section .price-item .description .features li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .pricing-section .price-item .description .features li {
    font-size: 1rem;
  }
}
.pricing-section .price-item .description .features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  background: #3a3a3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.pricing-section .price-item .description .features li:last-child {
  margin-bottom: 0;
}

.about-us-section {
  background: #f5f5f5;
}
.about-us-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 480px) {
  .about-us-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-us-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.about-us-section .about-us-content {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .about-us-section .about-us-content {
    max-width: 900px;
  }
}
@media (min-width: 768px) {
  .about-us-section .about-us-content {
    flex-direction: row;
    min-height: 500px;
    gap: 3rem;
  }
}
.about-us-section .about-us-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) {
  .about-us-section .about-us-text {
    flex: 0 0 65%;
    padding: 4rem 0.5rem 4rem 0;
  }
}
.about-us-section .about-us-text h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .about-us-section .about-us-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }
}
.about-us-section .about-us-text p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
@media (min-width: 768px) {
  .about-us-section .about-us-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.about-us-section .about-us-text p:last-child {
  margin-bottom: 0;
}
.about-us-section .about-us-image {
  flex: 0 0 35%;
  display: flex;
  align-items: flex-start;
  padding: 0 2rem 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .about-us-section .about-us-image {
    padding: 8rem 0 4rem 0;
    margin-top: 0;
  }
}
.about-us-section .about-us-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: none;
}

.contact-section {
  background: #fff;
  text-align: left;
}
.contact-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 480px) {
  .contact-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .contact-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contact-section h2 {
  margin-bottom: 1.5rem;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .contact-section h2 {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-section h2 {
    padding: 0 2rem;
  }
}
.contact-section .contact-info {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .contact-section .contact-info {
    max-width: 600px;
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-section .contact-info {
    padding: 0 2rem;
  }
}
.contact-section .contact-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .contact-section .contact-info p {
    font-size: 1.125rem;
  }
}
.contact-section .contact-info p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #1a1a1a;
  color: #fff;
  margin-top: auto;
}
.site-footer .footer-main {
  padding: 3rem 0 2rem;
  background: #1a1a1a;
}
@media (min-width: 768px) {
  .site-footer .footer-main {
    padding: 4rem 0 3rem;
  }
}
.site-footer .footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-container {
    padding: 0 3rem;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-container {
    padding: 0 4rem;
  }
}
.site-footer .footer-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
  }
}
.site-footer .footer-column h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .site-footer .footer-column h3 {
    font-size: 1.4rem;
  }
}
.site-footer .footer-contact p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer .footer-contact p:last-child {
  margin-bottom: 0;
}
.site-footer .footer-contact p strong {
  color: #e67e22;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav ul li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-nav ul li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-nav ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: inline-block;
}
.site-footer .footer-nav ul li a:hover {
  color: #e67e22;
  padding-left: 0.5rem;
}
.site-footer .footer-social {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.site-footer .footer-social a:hover {
  background: #e67e22;
  color: #fff;
  transform: translateY(-3px);
}
.site-footer .footer-social a svg {
  width: 24px;
  height: 24px;
}
.site-footer .footer-social p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.site-footer .footer-form .form-group {
  margin-bottom: 1rem;
}
.site-footer .footer-form .form-group input,
.site-footer .footer-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.site-footer .footer-form .form-group input::placeholder,
.site-footer .footer-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-form .form-group input:focus,
.site-footer .footer-form .form-group textarea:focus {
  outline: none;
  border-color: #e67e22;
  background: rgba(255, 255, 255, 0.15);
}
.site-footer .footer-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.site-footer .footer-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .site-footer .footer-form .btn {
    width: auto;
  }
}
.site-footer .footer-bottom {
  background: #0f0f0f;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}
.site-footer .footer-bottom p span {
  display: block;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom p span {
    display: inline;
    margin-bottom: 0;
  }
  .site-footer .footer-bottom p span:not(:last-child)::after {
    content: " | ";
    margin: 0 0.5rem;
  }
}
.site-footer .footer-bottom p span:last-child {
  margin-bottom: 0;
}
.site-footer .footer-bottom p a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom p a:hover {
  color: #e67e22;
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .btn {
    padding: 1.5rem 2rem;
  }
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.btn--primary {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .btn--primary {
    padding: 1.5rem 2rem;
  }
}
.btn--primary:hover {
  background: rgb(209.6804878049, 111.0073170732, 23.7195121951);
}
.btn--secondary {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #3a3a3c;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}
.btn--secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .btn--secondary {
    padding: 1.5rem 2rem;
  }
}
.btn--secondary:hover {
  background: rgb(42.9593220339, 42.9593220339, 44.4406779661);
}
.btn--orange {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}
.btn--orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .btn--orange {
    padding: 1.5rem 2rem;
  }
}
.btn--orange:hover {
  background: rgb(205.0987804878, 108.5817073171, 23.2012195122);
}
.btn--orange:hover {
  color: #fff;
}
.btn--outline {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: transparent;
  color: #e67e22;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}
.btn--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .btn--outline {
    padding: 1.5rem 2rem;
  }
}
.btn--outline {
  border: 2px solid #e67e22;
}
.btn--outline:hover {
  background: #e67e22;
  color: #fff;
}
.btn--large {
  padding: 0.65rem 2rem;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .btn--large {
    padding: 0.65rem 2rem;
  }
}
.btn--nav {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .btn--nav {
    padding: 0.6rem 1.75rem;
    font-size: 0.95rem;
  }
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.card__header {
  margin-bottom: 1rem;
}
.card__header h3 {
  color: #e67e22;
  margin-bottom: 0.5rem;
}
.card__content {
  color: #caced4;
}
.card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #caced4;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1041px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1041px) {
  .hamburger {
    width: 28px;
    height: 21px;
  }
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}
.hamburger__line:nth-child(1) {
  top: 0;
}
.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__line:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}
.menu-toggle.active .hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.menu-toggle {
  position: relative;
  z-index: 999;
}

.scroll-arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: arrowBounce 2s infinite;
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .scroll-arrow {
    bottom: 20px;
  }
}
.scroll-arrow:hover {
  animation: none;
}
.scroll-arrow svg {
  width: 2rem;
  height: 2rem;
  color: #e67e22;
  stroke-width: 3;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .scroll-arrow svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 4;
  }
}
@keyframes arrowBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(5px);
  }
  60% {
    transform: translateX(-50%) translateY(2px);
  }
}

.form-success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}
.form-success-message .success-message-content {
  background: #3a3a3c;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}
@media (min-width: 768px) {
  .form-success-message .success-message-content {
    padding: 3rem;
  }
}
.form-success-message .success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.form-success-message .success-icon svg {
  color: #e67e22;
  width: 64px;
  height: 64px;
}
.form-success-message h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .form-success-message h3 {
    font-size: 2rem;
  }
}
.form-success-message p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.form-success-message .success-close-btn {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-success-message .success-close-btn:hover {
  background: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}
.form-success-message .success-close-btn:active {
  transform: translateY(0);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background: #3a3a3c;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-container.terms-modal-container {
  background: #fff;
  max-width: 700px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header h2 {
  margin: 0;
  color: #e67e22;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .modal-header h2 {
    font-size: 1.75rem;
  }
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  color: #fff;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e67e22;
  transform: rotate(90deg);
}
.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-body {
  padding: 1.5rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .modal-body {
    padding: 2rem;
  }
}
.modal-body {
  scrollbar-width: thin;
  scrollbar-color: #e67e22 #2c2c2e;
}
.modal-body::-webkit-scrollbar {
  width: 10px;
}
.modal-body::-webkit-scrollbar-track {
  background: #2c2c2e;
  border-radius: 8px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #e67e22;
  border-radius: 8px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgb(214.262195122, 113.4329268293, 24.237804878);
}

.modal-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.offert-form .form-group {
  margin-bottom: 1.5rem;
}
.offert-form .form-group input,
.offert-form .form-group textarea,
.offert-form .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.offert-form .form-group input:focus,
.offert-form .form-group textarea:focus,
.offert-form .form-group select:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.offert-form .form-group input::placeholder,
.offert-form .form-group textarea::placeholder,
.offert-form .form-group select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.offert-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.offert-form .btn {
  width: 100%;
  margin-top: 1rem;
}
.offert-form .checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  cursor: pointer;
}
.offert-form .checkbox-group label span {
  flex: 1;
  line-height: 1.4;
}
.offert-form .checkbox-group label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
}
.offert-form .checkbox-group label a {
  color: #e67e22;
  text-decoration: underline;
}
.offert-form .checkbox-group label a:hover {
  color: rgba(230, 126, 34, 0.8);
}

#offertTermsView h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
#offertTermsView h4 {
  color: #e67e22;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  margin-top: 0.75rem;
}
#offertTermsView .terms-section {
  padding: 0;
  margin-bottom: 0.75rem;
}
#offertTermsView .terms-section:first-child h4 {
  margin-top: 0;
}
#offertTermsView .terms-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}
#offertTermsView .terms-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0.35rem 0;
}
#offertTermsView .terms-section ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
#offertTermsView .terms-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: bold;
}
#offertTermsView .terms-content-scroll {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
#offertTermsView .terms-footer-link {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
#offertTermsView .terms-footer-link a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
}
#offertTermsView .terms-footer-link a:hover {
  text-decoration: underline;
}

.back-to-form-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #e67e22;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}
.back-to-form-btn:hover {
  color: rgba(230, 126, 34, 0.8);
  gap: 0.75rem;
}
.back-to-form-btn svg {
  width: 20px;
  height: 20px;
}

.news-page,
.search-results,
.single-post,
.blog,
.archive {
  background: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
}

.booking-page {
  background: linear-gradient(135deg, #2a2a2a 0%, #e67e22 100%);
  min-height: 100vh;
}

.page-header {
  text-align: center;
  background: #2a2a2a;
  color: #fff;
  padding: calc(3rem + 80px) 0 2rem;
  margin-top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .page-header {
    padding-top: calc(3rem + 90px);
  }
}
.page-header .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-header .page-title {
    font-size: 3rem;
  }
}
.page-header .page-description {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.single-post {
  background: #f5f5f5;
  min-height: 100vh;
}
.single-post .page-header {
  background: transparent;
  color: #3a3a3c;
  width: auto;
  margin: 0 auto;
  transform: none;
}
.single-post .page-header .page-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 0;
}
@media (min-width: 768px) {
  .single-post .page-header .page-header__inner {
    padding: 0 2rem 0;
  }
}
.single-post .page-header .page-title {
  margin-bottom: 1.5rem;
}
.single-post .page-header .page-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.single-post .page-header .back-link {
  color: #3a3a3c;
  text-decoration: none;
  font-weight: 600;
}
.single-post .page-header .back-link:hover {
  color: #e67e22;
}
.single-post .page-header .page-header__meta {
  font-size: 0.95rem;
  color: #3a3a3c;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.single-post .page-header .page-header__meta a {
  color: #3a3a3c;
  text-decoration: none;
}
.single-post .page-header .page-header__meta a:hover {
  color: #e67e22;
}
.single-post .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .single-post .container {
    padding: 0 2rem;
  }
}
.single-post article.post {
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: none;
  overflow: visible;
  padding: 0 2rem 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .single-post article.post {
    padding: 0 3rem 0;
    margin-top: 0;
  }
}
.single-post article.post .entry-header {
  margin-bottom: 1rem;
}
.single-post article.post .post-thumbnail {
  margin: 0 0 1.5rem;
}
.single-post article.post .post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-post article.post .entry-content > p,
.single-post article.post .entry-content .wp-block-paragraph {
  line-height: 1.7;
  margin: 0 0 4em;
  max-width: 672px;
  width: 100%;
  margin-left: 0;
}
@media (min-width: 768px) {
  .single-post article.post .entry-content > p,
  .single-post article.post .entry-content .wp-block-paragraph {
    margin-left: 0;
  }
}
.single-post article.post .entry-content img,
.single-post article.post .entry-content figure,
.single-post article.post .entry-content iframe,
.single-post article.post .entry-content video {
  max-width: 100%;
  height: auto;
}
.single-post article.post .entry-content h2,
.single-post article.post .entry-content h3,
.single-post article.post .entry-content h4 {
  color: #e67e22;
  margin: 2rem 0 1rem;
}
.single-post article.post .entry-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #caced4;
  color: #caced4;
  font-size: 0.95rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.single-post .post-navigation {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.single-post .post-navigation a {
  color: #e67e22;
  text-decoration: none;
}
.single-post #comments {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.booking-page {
  background: #1a1a1a;
  min-height: 100vh;
}
.booking-page .page-header {
  background: none;
  padding-top: calc(3rem + 80px);
  margin-top: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .booking-page .page-header {
    padding-top: calc(3rem + 90px);
    text-align: center;
  }
}
.booking-page .page-header .page-title {
  color: #fff;
  margin-left: 0;
}
.booking-page .page-header .page-description {
  color: #fff;
  opacity: 0.9;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .booking-page .page-header .page-description {
    margin: 0 auto;
  }
}

.news-page .page-header {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.news-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.archive .page-header {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.archive .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.archive .archive-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .archive .archive-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .archive .archive-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive .archive-post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.archive .archive-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.archive .archive-post .post-thumbnail {
  overflow: hidden;
  height: 200px;
}
.archive .archive-post .post-thumbnail a {
  display: block;
  height: 100%;
}
.archive .archive-post .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive .archive-post .post-thumbnail:hover img {
  transform: scale(1.05);
}
.archive .archive-post .entry-summary {
  padding: 1.5rem;
}
.archive .archive-post .entry-header {
  padding: 1.5rem;
  padding-bottom: 0;
}
.archive .archive-post .entry-footer {
  padding: 1.5rem;
  padding-top: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-thumbnail {
  overflow: hidden;
  height: 200px;
}
.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-content {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.news-header {
  margin-bottom: 1rem;
}
.news-header .news-title {
  margin: 0 0 0.5rem;
  color: #3a3a3c;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #caced4;
  margin-bottom: 1rem;
}
.news-meta time {
  color: #caced4;
}
.news-meta .news-category {
  background: #f2f5f7;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.news-excerpt {
  color: #3a3a3c;
  line-height: 1.6;
  margin-bottom: 0;
}
.news-excerpt p {
  margin: 0;
}

.news-card-link .btn {
  align-self: flex-start;
  margin-top: auto;
  pointer-events: none;
}

.news-item .btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.95rem;
}

.no-news {
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  grid-column: 1/-1;
}
.no-news p {
  font-size: 1.1rem;
  color: #caced4;
  margin: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  grid-column: 1/-1;
}
.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid #caced4;
  border-radius: 4px;
  text-decoration: none;
  color: #3a3a3c;
  transition: all 0.3s ease;
}
.pagination a:hover,
.pagination a.current,
.pagination span:hover,
.pagination span.current {
  background: #e67e22;
  color: #fff;
  border-color: #e67e22;
}

.booking-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}
.booking-content .booking-form-section {
  order: 2;
}
@media (min-width: 1024px) {
  .booking-content .booking-form-section {
    order: 1;
  }
}
.booking-content .booking-info-section {
  order: 1;
}
@media (min-width: 1024px) {
  .booking-content .booking-info-section {
    order: 2;
  }
}
@media (min-width: 1024px) {
  .booking-content {
    grid-template-columns: 2fr 1fr;
  }
}

.booking-form .form-group {
  margin-bottom: 1rem;
}
.booking-form .form-group label {
  display: none;
}
.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}
.booking-form .form-group input::placeholder,
.booking-form .form-group select::placeholder,
.booking-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
  outline: none;
  border-color: #e67e22;
  background: rgba(255, 255, 255, 0.15);
}
.booking-form .form-group input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.booking-form .form-group input[type="number"]::-webkit-outer-spin-button,
.booking-form .form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.booking-form .form-group select {
  padding-right: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.41 0L6 4.58 10.59 0 12 1.42l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}
.booking-form .form-group select:valid,
.booking-form .form-group select:focus {
  color: #fff;
}
.booking-form .form-group select option {
  background: #2a2a2a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.booking-form .form-group select option:first-child {
  color: rgba(255, 255, 255, 0.5);
}
.booking-form .form-group input[type="date"] {
  color: rgba(255, 255, 255, 0.5);
}
.booking-form .form-group input[type="date"]:valid,
.booking-form .form-group input[type="date"]:focus {
  color: #fff;
}
.booking-form
  .form-group
  input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
}
.booking-form .form-group textarea {
  resize: vertical;
  min-height: 129px;
}
.booking-form .form-group.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: normal;
  color: #fff;
}
.booking-form .form-group.checkbox-group label span {
  flex: 1;
  line-height: 1.4;
}
.booking-form .form-group.checkbox-group label a {
  color: #e67e22;
  text-decoration: underline;
}
.booking-form .form-group.checkbox-group label a:hover {
  color: #fff;
}
.booking-form .form-group.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}
.booking-form .form-terms {
  margin-bottom: 1.5rem;
  text-align: center;
}
.booking-form .form-terms p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.booking-form .form-terms p a {
  color: #e67e22;
  text-decoration: underline;
}
.booking-form .form-terms p a:hover {
  color: #fff;
}

.booking-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.info-card h3 {
  color: #e67e22;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.info-card ul,
.info-card ol {
  margin: 0;
  padding-left: 1.5rem;
}
.info-card ul li,
.info-card ol li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.info-card.contact-card {
  background: #f2f5f7;
}
.info-card.contact-card p {
  margin-bottom: 0.5rem;
}
.info-card.contact-card p:last-child {
  margin-bottom: 0;
}

.booking-page .info-card {
  background: #3a3a3c;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.booking-page .info-card h3 {
  color: #fff;
}
.booking-page .info-card ul,
.booking-page .info-card ol {
  margin: 0;
  padding-left: 1.5rem;
  list-style: inherit;
}
.booking-page .info-card ul li,
.booking-page .info-card ol li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #fff;
}
.booking-page .info-card ul li::marker,
.booking-page .info-card ol li::marker {
  color: #fff;
}
.booking-page .info-card ul li {
  list-style-type: disc;
}
.booking-page .info-card ol li {
  list-style-type: decimal;
}
.booking-page .info-card.contact-card {
  background: #3a3a3c;
  color: #fff;
}
.booking-page .info-card.contact-card p {
  color: #fff;
}

.booking-divider {
  width: 100%;
  height: 2px;
  background: #e67e22;
}

.booking-page .site-footer {
  background: #2a2a2a;
}

.terms-page {
  background: #fff;
  min-height: 100vh;
}
.terms-page .page-header {
  display: none;
}
.terms-page .terms-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(3rem + 80px) 1.5rem 2rem;
}
@media (min-width: 768px) {
  .terms-page .terms-wrapper {
    padding: calc(3rem + 90px) 2rem 3rem;
  }
}
.terms-page .terms-top-nav {
  background: transparent;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  box-shadow: none;
  margin: 0 auto 2rem;
  max-width: 960px;
}
@media (min-width: 768px) {
  .terms-page .terms-top-nav {
    position: sticky;
    top: calc(80px + 1rem);
    z-index: 5;
  }
}
.terms-page .terms-top-nav ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .terms-page .terms-top-nav ul {
    display: flex;
    justify-content: center;
  }
}
.terms-page .terms-top-nav li {
  width: 100%;
}
@media (min-width: 768px) {
  .terms-page .terms-top-nav li {
    width: auto;
  }
}
.terms-page .terms-top-nav .terms-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3a3a3c;
  text-decoration: none;
  background: #f2f5f7;
  border: 1px solid #caced4;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  width: 100%;
}
.terms-page .terms-top-nav .terms-top-link:hover {
  background: #f5f5f5;
  border-color: #e67e22;
  color: #e67e22;
}
.terms-page .terms-top-nav .terms-top-link.active {
  background: #e67e22;
  color: #fff;
  border-color: #e67e22;
}
@media (min-width: 768px) {
  .terms-page .terms-top-nav .terms-top-link {
    width: auto;
    padding: 0.7rem 1.4rem;
  }
}
.terms-page .terms-content {
  max-width: 900px;
  margin: 0 auto;
}
.terms-page .terms-section-group {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #caced4;
  scroll-margin-top: calc(3rem + 80px);
}
.terms-page .terms-section-group:first-child {
  margin-top: 0;
  padding-top: 0;
}
.terms-page .terms-section-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.terms-page .terms-section-group > h2 {
  font-size: 1.75rem;
  color: #000;
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
  border-bottom: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .terms-page .terms-section-group > h2 {
    font-size: 2rem;
  }
}
.terms-page .terms-section-group .section-intro {
  font-size: 1rem;
  color: #caced4;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .terms-page .terms-section-group .section-intro {
    font-size: 1rem;
  }
}
.terms-page .terms-section {
  margin-bottom: 1rem;
  padding: 0;
}
.terms-page .terms-section h3 {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .terms-page .terms-section h3 {
    font-size: 1.5rem;
  }
}
.terms-page .terms-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #3a3a3c;
}
@media (min-width: 768px) {
  .terms-page .terms-section p {
    font-size: 1rem;
  }
}
.terms-page .terms-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.terms-page .terms-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3c;
}
@media (min-width: 768px) {
  .terms-page .terms-section ul li {
    font-size: 1rem;
  }
}
.terms-page .terms-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: bold;
  font-size: 1.2em;
}
.terms-page .terms-section ul li strong {
  color: #e67e22;
  font-weight: 600;
}
.terms-page .terms-section:last-child {
  margin-bottom: 0;
}
.terms-page .terms-updated {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #caced4;
}
.terms-page .terms-updated p {
  color: rgba(58, 58, 60, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.search-results .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.search-results-list {
  padding: 3rem 0;
}

.search-result-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #caced4;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item .entry-title a {
  color: #e67e22;
  text-decoration: none;
  font-size: 1.4rem;
}
.search-result-item .entry-title a:hover {
  text-decoration: underline;
}
.search-result-item .entry-meta {
  color: #caced4;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}
.search-result-item .entry-summary {
  margin: 1rem 0;
  line-height: 1.6;
}
.search-result-item .read-more-link {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
}
.search-result-item .read-more-link:hover {
  text-decoration: underline;
}

.no-results {
  text-align: center;
  padding: 3rem;
}
.no-results h2 {
  color: #3a3a3c;
  margin-bottom: 1.5rem;
}
.no-results .search-suggestions {
  margin: 2rem 0;
}
.no-results .search-suggestions h3 {
  color: #e67e22;
  margin-bottom: 1rem;
}
.no-results .search-suggestions ul {
  list-style: none;
  padding: 0;
}
.no-results .search-suggestions ul li {
  margin-bottom: 0.5rem;
}
.no-results .search-suggestions ul li a {
  color: #e67e22;
  text-decoration: none;
}
.no-results .search-suggestions ul li a:hover {
  text-decoration: underline;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.search-form .search-field {
  flex: 1;
  padding: 1rem;
  border: 2px solid #caced4;
  border-radius: 4px;
}
.search-form .search-field:focus {
  outline: none;
  border-color: #e67e22;
}

.error-404-page {
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(1rem + 80px) 0 2rem;
}
@media (min-width: 768px) {
  .error-404-page {
    padding: calc(1rem + 90px) 0 2rem;
  }
}
.error-404-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.error-404 {
  width: 100%;
}

.error-404__content {
  text-align: center;
}

.error-404__number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #e67e22;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .error-404__number {
    font-size: 5rem;
  }
}

.error-404__header {
  margin-bottom: 1rem;
}

.error-404__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 1.75rem;
  }
}

.error-404__description {
  font-size: 1rem;
  color: #caced4;
  line-height: 1.6;
  margin: 0;
}

.error-404__links {
  margin-bottom: 1.5rem;
}
.error-404__links h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 1rem;
}

.error-404__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .error-404__nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.error-404__link {
  display: block;
  padding: 1rem;
  background: #f2f5f7;
  color: #3a3a3c;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid #caced4;
}
.error-404__link:hover {
  background: #fff;
  color: #e67e22;
  border-color: #e67e22;
}

.error-404__action .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */
