@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
  font-family: "Haffer";
  src:
    url("../fonts/HafferMono/HafferMono-Regular.woff2") format("woff2"),
    url("../fonts/HafferMono/HafferMono-Regular.woff") format("woff"),
    url("../fonts/HafferMono/HafferMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #046cc3;
  --secondary: #f38100;
  --tertiary: #24539f;
  --color-green: #9cc43f;
  --color-yellow: #f8e441;
  --primary-font: "Inter", sans-serif;
  --secondary-font: "DM Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.page-template-template-home {
  padding-top: 0 !important;
}
body {
  font-family: var(--primary-font);
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;

  transition: 0.35s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: #000;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.position-relative {
  position: relative;
}

.column-1 {
  grid-column: span 1;
}
.row-1 {
  grid-row: span 1;
}
.column-2 {
  grid-column: span 2;
}
.row-2 {
  grid-row: span 2;
}
.column-3 {
  grid-column: span 3;
}
.row-3 {
  grid-row: span 3;
}
.column-4 {
  grid-column: span 4;
}
.row-4 {
  grid-row: span 4;
}
.column-5 {
  grid-column: span 5;
}
.row-5 {
  grid-row: span 5;
}
.column-6 {
  grid-column: span 6;
}
.row-6 {
  grid-row: span 6;
}
.column-7 {
  grid-column: span 7;
}
.row-7 {
  grid-row: span 7;
}
.column-8 {
  grid-column: span 8;
}
.row-8 {
  grid-row: span 8;
}
.column-9 {
  grid-column: span 9;
}
.row-9 {
  grid-row: span 9;
}
.column-10 {
  grid-column: span 10;
}
.row-10 {
  grid-row: span 10;
}
.column-11 {
  grid-column: span 11;
}
.row-11 {
  grid-row: span 11;
}
.column-12 {
  grid-column: span 12;
}
.row-12 {
  grid-row: span 12;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.section {
  padding-top: 50px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.h-100 {
  height: 100%;
}

.mb-5 {
  margin-bottom: 30px;
}

.mt-48 {
  margin-top: 40%;
}
.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
  display: none;
}
.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}

@media (max-width: 992px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 6;
  }
  .grid {
    grid-gap: 16px;
  }
}

@media (max-width: 768px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 12;
  }
}

.mt-40 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 2rem;
}
.left-column {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 3rem;
}
.right-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 300px;
  min-width: 300px;
}

.section-sm {
  padding: 40px 0;
}
.section-md {
  padding: 50px 0;
}
.section-lg {
  padding: 100px 0;
}
.scenic-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.scenic-container-xlarge {
  max-width: 100%;
  margin: 0 auto;
}

.scenic-container-large {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.scenic-container-small {
  max-width: 960px;
  padding: 0 20px;

  margin: 0 auto;
}

.scenic-container-xsmall {
  max-width: 890px;
  padding: 0 20px;
  margin: 0 auto;
}

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

/* Galleries
  --------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
  --------------------------------------------- */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.5em;
}

.sub-title {
  font-weight: 500;
  color: rgba(33, 33, 33, 0.81);
  font-family: var(--secondary-font);
  font-size: 24px;
}

/* ---------- COMMON TITLE SECTION ---------- */
.title-section {
  position: relative;
}
.title-section p {
  position: relative;
  display: inline-block;
  font-weight: 400;
  color: var(--secondary);
  font-family: var(--primary-font);
  font-size: 20px;
  margin-bottom: 10px;
  padding: 0 0 0 30px;
}

.title-section p span {
  position: relative;
  z-index: 2;
  padding: 0 10px;

  background: #fff;
}
.title-section.arrow p {
  padding: 0 30px;
}

.title-section p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  background: var(--primary);
  z-index: 1;
  width: 100%;
}
.site-content .title-section h2,
.title-section h2 {
  font-family: var(--primary-font);
  color: var(--primary);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0;
}

/* ---------- ARROW VARIANT ---------- */
.title-section.arrow {
  text-align: center; /* center align text */
}

@media (max-width: 768px) {
  .title-section p {
    font-size: 16px;
    padding-left: 35px;
  }
  .title-section h2 {
    font-size: 28px;
  }
  .title-section.arrow p::after {
    right: -20%;
    width: 20px;
  }
}

@media (max-width: 480px) {
  .title-section p {
    font-size: 14px;
    padding-left: 20px;
  }
  .title-section h2 {
    font-size: 24px;
  }
  .title-section.arrow p::after {
    right: -15%;
    width: 15px;
  }
}

.site-content p,
.site-content ul li {
  color: rgba(39, 39, 39, 0.73);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  font-family: var(--primary-font);
  margin: 20px 0 20px 0;
}
.site-content ul {
  margin-left: 14px;
}
.site-content ul li {
  margin: 5px 0 5px 0;
}

figcaption {
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 500;
  color: #000;
  text-align: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 8px 8px 8px 30px;
  border-radius: 30px;
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.hero-btn::after {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;

  background: transparent;
  cursor: pointer;
  margin: 0 5px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f061";
  font-family: "Font Awesome 6 Free";

  font-weight: 900;
  font-size: 24px;
  color: var(--primary);
  background-color: #fff;

  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-45deg);
  flex-shrink: 0;
  margin-left: auto;
}

.hero-btn:hover {
  transform: translateY(-3px);
}
.hero-btn:hover::after {
  transform: rotate(0deg);
  background: var(--secondary);
  color: white;
}

/* Hero Section Single Pages */
.hero-content.single {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
}

.hero-content.single h1 {
  font-family: var(--primary-font);
  color: var(--color-yellow);
  font-size: 58px;
  width: 100%;
  margin: 0;
}
.hero-content.single p {
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .hero-content.single h1 {
    font-size: 50px;
    line-height: 1;
  }
  .primary-menu,
  #primary-menu {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .hero-content.single {
    transform: translateX(0);
    position: static;
  }
  .custom-logo {
    height: 45px;
    width: 200px;
  }
  .scenic-container-large.header {
    padding: 14px 20px;
  }

  .hero-content.single h1 {
    font-size: 48px;
  }
  .hero-content.single p {
    font-size: 28px;

    color: #fff;
  }

  .header-title p {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .hero-content.single h1 {
    font-size: 38px;
  }
  .hero-content.single p {
    font-size: 20px;
  }
  .custom-logo {
    height: 45px;
    width: 200px;
  }
}
@media (max-width: 600px) {
  .hero-content.single h1 {
    font-size: 30px;
  }
  .hero-content.single p {
    font-size: 20px;
  }
  .custom-logo {
    height: 40px;
    width: 180px;
  }
}

@media (max-width: 480px) {
  .hero-content.single h1 {
    font-size: 24px;
    line-height: 22px;
  }
  .custom-logo {
    height: 35px;
    width: 160px;
  }
  .hero-content.single p {
    font-size: 18px;
  }

  .hero-btn {
    font-size: 13px;
  }
}
/* ===============================
   CTA SECTION
================================= */
.cta-section {
  position: relative;
  margin-bottom: 0;
  z-index: 5;
}

.scenic-container-large.cta {
  padding: 0px 20px;
}

.cta-inner {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: none;
  z-index: 0;
}

/* Background image */
.cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

/* Content above overlay */
.cta-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.cta-content .title-section {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content .title-section h2 {
  color: #fff;
  text-align: center;
}

/* Button */
.cta-btn {
  background: #2196f3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #0d6efd;
}

/* Floating Badges */
.cta-badges {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -40px;
  z-index: 3;
}

.badges-wrapper {
  background: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.badges-wrapper img {
  width: 50px;
  height: 45px;
  object-fit: contain;
}

/* ===============================
   FOOTER
================================= */

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -30%;
  background: linear-gradient(180deg, #dff2ff 0%, #f4faff 40%, #ffffff 100%);
  z-index: -1;
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 450px;
  background: url("../images/footer-bg.png") no-repeat center center/cover;
  opacity: 0.8;
  z-index: 0;
}
.footer-inner.scenic-container-large {
  padding: 70px 20px 10px 20px;
}
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* Footer Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 15px;
}

/* Brand */
.footer-logo img {
  max-width: 100%;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 26px;
  color: rgba(39, 39, 39, 0.75);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials .fa-brands {
  font-size: 20px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
}

/* Footer Columns */
.footer-col h4 {
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 600;
  line-height: 26px;
  color: #000;
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  text-decoration: none;
  color: rgba(39, 39, 39, 0.73);
  line-height: 30px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
  font-weight: 500;
}

.footer-col.add ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.footer-col.add ul li {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

.footer-col.add ul li span {
  font-weight: 500;
  color: rgba(39, 39, 39, 0.9);
}

.footer-col.add ul li a {
  text-decoration: none;
  color: inherit;
}

.contact-value {
  color: rgba(39, 39, 39, 0.9);
  font-weight: 500;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary);
}

/* Footer Bottom */

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  padding: 30px 20px;
}

.footer-bottom p,
.footer-bottom p a {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: rgba(39, 39, 39, 0.85);
  margin: 0;
  line-height: 24px;
  text-decoration: none;
}
.footer-bottom p span {
  font-weight: 500;
  color: rgba(39, 39, 39, 0.85);
}

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
  .title-section h2 {
    font-size: 36px;
  }
}

/* Desktop/Tablet (992px and below) */
@media (max-width: 992px) {
  .footer-top {
    gap: 30px;
  }
  .title-section h2 {
    font-size: 34px;
  }
  .hero-btn {
    padding: 6px 6px 6px 28px;
  }
  .scenic-container-large.footer-bottom-inner {
    display: block;
    text-align: center;
  }
}

/* Tablet Large (900px and below) */
@media (max-width: 900px) {
  .cta-content {
    padding: 60px 30px;
  }
  .title-section h2 {
    font-size: 32px;
  }
  .sub-title {
    font-size: 22px;
  }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .cta-inner {
    height: 450px;
    border-radius: 25px;
  }
  .cta-content {
    padding: 50px 25px;
  }
  .cta-badges {
    margin-top: -35px;
  }
  .badges-wrapper {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 20px;
  }
  .badges-wrapper img {
    width: 40px;
    height: 35px;
  }
  .footer-top {
    gap: 35px;
    grid-template-columns: repeat(2, 1fr);
  }
  .title-section h2 {
    font-size: 30px;
  }
  .sub-title {
    font-size: 20px;
  }
  .hero-btn {
    padding: 5px 5px 5px 15px;
    gap: 10px;
  }
  .hero-btn::after {
    height: 36px;
    background-size: 50%;
    width: 36px;
  }
  .scenic-container-large.footer-bottom-inner {
    justify-content: center;
    padding: 18px 14px;
  }
  .site-footer::after {
    display: none;
  }
}

/* Small Phone (600px and below) */
@media (max-width: 600px) {
  .cta-inner {
    height: 400px;
    border-radius: 20px;
  }
  .cta-content {
    padding: 40px 20px;
  }
  .cta-content .title-section {
    max-width: 100%;
  }
  .title-section h2 {
    font-size: 28px;
  }
  .sub-title {
    font-size: 18px;
  }
  .scenic-container-large.footer-bottom-inner {
    justify-content: center;
    padding: 18px 14px;
  }
}

/* Phone (480px and below) */
@media (max-width: 480px) {
  .cta-inner {
    height: 350px;
    border-radius: 16px;
  }
  .cta-content {
    padding: 35px 18px;
  }
  .cta-badges {
    margin-top: -30px;
  }
  .badges-wrapper {
    padding: 6px 15px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-col.logo {
    order: -1;
  }
  .footer-col.add {
    order: 0;
  }
  .footer-col {
    order: 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 15px;
  }
  .title-section h2 {
    font-size: 26px;
  }
  .sub-title {
    font-size: 16px;
  }
  .footer-socials {
    justify-content: center;
  }
  .site-footer::before {
    background: transparent;
  }
  .scenic-container-large.footer-bottom-inner {
    justify-content: center;
    padding: 18px 14px;
  }
}

/* Extra Small Phone (360px and below) */
@media (max-width: 360px) {
  .custom-logo {
    height: 32px;
    width: 150px;
  }
  .cta-inner {
    height: 320px;
    border-radius: 18px;
  }
  .cta-content {
    padding: 30px 15px;
  }
  .cta-badges {
    margin-top: -25px;
  }
  .badges-wrapper img {
    width: 35px;
    height: 30px;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-bottom-inner {
    padding: 15px 12px;
  }
  .title-section h2 {
    font-size: 22px;
    line-height: 1.2;
  }
  .sub-title {
    font-size: 15px;
  }
}
@media (max-width: 250px) {
  .custom-logo {
    height: 28px;
    width: 140px;
  }
}
/* Header Base */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  transition: all 0.3s ease;
  background: transparent;
}
.scenic-container-large.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  gap: 30px;
}
.site-header.header-default {
  position: relative;
  background: var(--primary);
  backdrop-filter: blur(20px);
  padding: 5px 0;
}

/* Branding / Logo */
.site-branding {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.custom-logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.custom-logo {
  height: 55px;
  width: 240px;
  transition: all 0.3s ease;
}
.custom-logo-link img {
  filter: brightness(0) invert(1);
}

.site-title {
  display: none;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-description {
  font-size: 11px;
  font-weight: 400;
  color: #333;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;

  background: transparent;
  transition: all 0.3s ease;
  flex: 1;

  margin-left: auto;
}

.primary-menu {
  display: flex;

  gap: 55px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.primary-menu li {
  list-style: none;
}
.primary-menu li {
  position: relative;
}
.primary-menu > li {
  padding-bottom: 15px;
  margin-bottom: -15px;
}

.primary-menu li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 0;
}
.primary-menu li .sub-menu li a {
  color: var(--primary);
}

/* Hover underline only on top-level menu items without children */
.primary-menu > li:not(.menu-item-has-children) > a::after,
#primary-menu > li:not(.menu-item-has-children) > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.3s ease;
}

/* Expand underline on hover or current menu item */
.primary-menu > li:not(.menu-item-has-children) > a:hover::after,
.primary-menu > li.current-menu-item:not(.menu-item-has-children) > a::after,
#primary-menu > li:not(.menu-item-has-children) > a:hover::after,
#primary-menu > li.current-menu-item:not(.menu-item-has-children) > a::after {
  width: 100%;
}

/* Dropdown Arrow */
.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  margin: 0 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  transition: all 0.3s ease;
}
.menu-item-has-children.active > a::after,
.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.site-header.scrolled .menu-item-has-children > a::after,
.site-header.scrolled
  .primary-menu
  .sub-menu
  > li.menu-item-has-children
  > a::after {
  border-top-color: #000;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 0;
  list-style: none;
  min-width: 250px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;

  z-index: 1003;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.primary-menu > li.menu-item-has-children {
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.primary-menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

.primary-menu .sub-menu .sub-menu {
  top: -10px;
  left: 100%;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.primary-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.primary-menu .sub-menu > li:hover > .sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.primary-menu .sub-menu li {
  margin: 0 10px;
}
.primary-menu .sub-menu li:first-child {
  margin-top: 10px;
}
.primary-menu .sub-menu li:last-child {
  margin-bottom: 10px;
}
.primary-menu .sub-menu li a,
.primary-menu .sub-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--primary);
  font-size: 16px;
  text-decoration: none;

  transition: all 0.3s ease;
}
.primary-menu .sub-menu li a:hover,
.primary-menu .sub-menu .sub-menu li a:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}

.primary-menu .sub-menu > li.menu-item-has-children > a {
  position: relative;
}
.primary-menu > li.menu-item-has-children:hover > .sub-menu,
.primary-menu .sub-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.primary-menu .sub-menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.primary-menu .sub-menu > li.menu-item-has-children.active > a::after,
.primary-menu .sub-menu > li.menu-item-has-children:hover > a::after {
  border-top-color: #000;
  transform: translateY(-50%) rotate(-90deg);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1005 !important;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-header {
  will-change: position;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #383838 !important;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
  z-index: 1006 !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}

.menu-item-has-children.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.primary-menu .sub-menu > li.menu-item-has-children {
  position: relative;
}

@media (min-width: 901px) {
  .site-header.scrolled {
    background: #fff;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    position: fixed;
  }

  .site-header.scrolled .custom-logo-link img {
    filter: none;
  }

  .site-header.scrolled .primary-menu li a,
  .site-header.scrolled #primary-menu li a {
    color: #383838;
  }

  .site-header.scrolled .menu-item-has-children > a::after {
    border-top-color: #000;
  }

  .site-header.scrolled .mobile-menu-toggle span {
    background: #000;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: var(--header-height, 70px);
  }
  .hero-section,
  .hero-top,
  .site-content {
    margin-top: 0;
  }
  .site-header {
    background: #fff !important;
    color: #383838;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);

    z-index: 100 !important;
    position: fixed;
    top: 0;
    will-change: auto;
  }
  .mobile-menu-toggle {
    display: flex;
    z-index: 9999;
  }

  .site-header .custom-logo-link img {
    filter: none;
  }

  .site-header .primary-menu li a {
    color: #383838;
  }

  .site-header .mobile-menu-toggle span {
    background: #383838;
    z-index: 10000000;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    background: #fff;
    padding: 100px 20px 40px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-menu-toggle {
    z-index: 1002 !important; /* Always on top so it's tappable */
  }
  .main-navigation.toggled {
    width: 250px;
    transform: translateX(0);
  }

  /* VERTICAL MENU */
  .primary-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .primary-menu li,
  #primary-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
  }
  /* ========== FIXED MOBILE SUBMENUS ========== */
  .primary-menu .sub-menu,
  .primary-menu .sub-menu .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;

    box-shadow: none;
    margin: 0;

    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Show submenus */
  .menu-item-has-children.active > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 100%;
  }

  /* Submenu links */
  .primary-menu .sub-menu li {
    margin: 0 !important;
  }

  .primary-menu .sub-menu li a,
  .primary-menu .sub-menu .sub-menu li a {
    color: #383838;

    padding: 12px 0 12px 0;

    display: block;
    position: relative;
  }

  .primary-menu .sub-menu li a:hover,
  .primary-menu .sub-menu .sub-menu li a:hover {
    background: none;
  }

  /* ========== PERFECT MOBILE ARROWS ========== */
  .menu-item-has-children > a {
    position: relative !important;
    display: block !important;
    width: 100% !important;
  }

  .main-navigation .menu-item-has-children > a::after {
    right: 24px;
    margin: 0;
    border-left: 6px solid #666;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
  }

  /* DOWN ARROW ↓ (OPEN) */
  .main-navigation .menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(-90deg);
  }

  /* Active parent styling */
  .site-header .primary-menu li.menu-item-has-children.active > a {
    background: none;
    color: var(--primary);
  }
  .main-navigation
    .primary-menu
    .sub-menu
    > li.menu-item-has-children
    > a::after {
    right: 56px;
    margin: 0;
    border-left: 6px solid #666;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
  }
  .primary-menu .sub-menu > li:hover > .sub-menu {
    left: 0;
  }
  .main-navigation
    .primary-menu
    .sub-menu
    > li.menu-item-has-children.active
    > a::after {
    border-left-color: var(--primary);
    transform: translateY(-50%) rotate(90deg);
  }
  .main-navigation.toggled
    .primary-menu
    .sub-menu
    > li.menu-item-has-children
    > a::after {
    right: 56px;
    border-left: 6px solid #666;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }

  .main-navigation.toggled .menu-item-has-children:hover > a::after,
  .main-navigation
    .primary-menu
    .sub-menu
    > li.menu-item-has-children:hover
    > a::after {
    border-left-color: #666;
    transform: translateY(-50%);
  }

  .main-navigation .menu-item-has-children:hover > a::after {
    border-left-color: #666;
    transform: translateY(-50%);
  }

  .main-navigation
    .primary-menu
    .sub-menu
    > li.menu-item-has-children:hover
    > a::after {
    border-left-color: #666;
    transform: translateY(-50%) rotate(90deg);
  }
}

/* ==============================
   HERO SECTION 
   ============================== */
.hero-section {
  margin: 0;
  padding: 0;
}

.hero-top {
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: visible; /* ← CHANGED: was 'hidden', was clipping arrows */
  text-align: center;
  z-index: 1;
}

.hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;

  padding: 0 20px;
  width: 100%;
}

.hero-inner h1 {
  font-family: var(--secondary-font);
  color: #fff;
  letter-spacing: -2%;
  font-size: 66px;
  font-weight: 600;
  line-height: 66px;
}

.hero-inner h1 span {
  color: var(--secondary);
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
}

/* HERO SEARCH FORM */
.hero-search {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 0.6px solid rgba(255, 255, 255, 1);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(3px);
}

.hero-search input {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search button {
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.hero-search input:focus {
  outline: none;
}

/* ==============================
   HERO SLICK SLIDER
   ============================== */
.hero-slick {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden; /* ← clips images here instead of on hero-top */
}

.hero-slick .slick-list,
.hero-slick .slick-track {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-slide::before,
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Slick Dots */
.hero-slick .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex !important;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 3;
  transform: translateX(-50%);
  width: auto;
}

.hero-slick .slick-dots li {
  margin: 0;
  display: flex;
}

.hero-slick .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: none;
  padding: 0;
  font-size: 0;
}

.hero-slick .slick-dots li.slick-active button {
  background: #fff;
  transform: scale(1.3);
}

.hero-slick .slick-dots li button::before {
  display: none;
}
.hero-slick .slick-prev,
.hero-slick .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-slick .slick-prev::before,
.hero-slick .slick-next::before {
  display: none;
}

.hero-slick .slick-prev {
  left: 30px;
}

.hero-slick .slick-next {
  right: 30px;
}

.hero-slick .slick-prev:hover,
.hero-slick .slick-prev:focus,
.hero-slick .slick-next:hover,
.hero-slick .slick-next:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1200px) {
  .primary-menu ul {
    gap: 20px;
  }
  .hero-inner h1 {
    font-size: 50px;
  }
}
@media (max-width: 900px) {
  body.page-template-template-home .hero-section {
    padding-top: var(--header-height, 70px);
  }

  .hero-top .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .hero-top {
    margin: 0;
    height: auto;
    min-height: unset;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .hero-slick {
    position: relative;
    inset: unset;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .hero-slick .slick-list,
  .hero-slick .slick-track {
    height: 400px;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-inner {
    position: static;
    transform: none;
    top: unset;
    left: unset;
    max-width: 100%;
    padding: 24px 20px 32px;
    background: var(--primary);
    text-align: center;
  }

  .hero-inner h1 {
    font-size: 40px;
    line-height: 42px;
    color: #fff;
    text-align: center;
  }

  .hero-inner h1 span {
    color: white;
  }

  .hero-slick .slick-prev,
  .hero-slick .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
  }

  .hero-slick .slick-prev {
    left: 16px;
  }

  .hero-slick .slick-next {
    right: 16px;
  }

  .hero-slick .slick-dots {
    bottom: 16px;
  }

  .hero-search {
    margin-top: 20px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 38px;
    line-height: 36px;
  }

  .scenic-container-large.hero-inner {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-inner h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
/* 404 page */

/* =============
404 page
============== */
.error-404-section {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.castle-container-small.error {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 80px 20px;

  max-width: 600px;
}

.error-404-number {
  font-size: 180px;
  font-weight: 900;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(253, 183, 20, 0.3);
}
.error-404-section h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.error-404-section p {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.error-btn-primary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  background: var(--secondary, #026cb5);
  color: white;
  border: 2px solid var(--secondary, #026cb5);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .error-404-number {
    font-size: 120px;
  }
  .error-404-section h1 {
    font-size: 32px;
  }
  .castle-container-small.error {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .error-404-number {
    font-size: 90px;
  }
  .error-404-section h1 {
    font-size: 26px;
  }
}

.content-block.sample h2 {
  font-size: 30px;
  color: var(--secondary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.content-block.sample p {
  font-size: 18px;
  font-weight: 400px;
  margin-top: 20px;
  color: #000;
}
