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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  font-family: var(--primary-font);
  max-width: 100%;
}

/* Regular */
@font-face {
  font-family: "PP Mori";
  src:
    url("../fonts/pp-mori/PPMori-Regular.woff2") format("woff2"),
    url("../fonts/pp-mori/PPMori-Regular.woff") format("woff"),
    url("../fonts/pp-mori/PPMori-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: "PP Mori";
  src:
    url("../fonts/pp-mori/PPMori-SemiBold.woff2") format("woff2"),
    url("../fonts/pp-mori/PPMori-SemiBold.woff") format("woff"),
    url("../fonts/pp-mori/PPMori-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =======================
   GENERAL SANS
======================= */

@font-face {
  font-family: "General Sans";
  src:
    url("../fonts/general-sans/GeneralSans-Semibold.woff2") format("woff2"),
    url("../fonts/general-sans/GeneralSans-Semibold.woff") format("woff"),
    url("../fonts/general-sans/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General-Medium";
  src:
    url("../fonts/general-sans/GeneralSans-Medium.woff2") format("woff2"),
    url("../fonts/general-sans/GeneralSans-Medium.woff") format("woff"),
    url("../fonts/general-sans/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #e6a600;
  --secondary: #026cb5;
  --tertiary: #594800;
  --color-green: #9cc43f;
  --color-yellow: #ffce00;
  --primary-font: "PP Mori", sans-serif;
  --secondary-font: "General Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
.header-title h2 {
  font-family: var(--primary-font);
  color: var(--primary);
  text-align: center;

  font-size: 48px;
}
.header-title span {
  font-family: var(--primary-font);
  color: var(--secondary);
}
.header-title {
  margin-bottom: 30px;
}
.header-title p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.58);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  line-height: 22px;
}
h3 {
  font-family: var(--primary-font);
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;

  color: #000;
  margin-bottom: 20px;
}

p {
  font-family: var(--primary-font);
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
}

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;
}

.castle-container-xlarge {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
}

.castle-container-large {
  max-width: 1400px;

  margin: 0 auto;
  padding: 0 50px;
}
.castle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.castle-container-small {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 80px;
}

.castle-container-xsmall {
  max-width: 890px;
  margin: 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;
}

.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;
}

@media (max-width: 992px) {
  .header-title h2 {
    font-size: 35px;
    text-align: center;
  }
}

/* ======================
Header Contents 
=========================*/
.site-header {
  align-items: center;
  justify-content: space-between;
  top: 0;
  font-family: var(--primary-font);
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  padding: 5px 0;
  background: transparent;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.site-header.sticky {
  top: 0;
  position: fixed;
}
/* Sticky Transparent Header */
.site-header.sticky-transparent {
  position: absolute;
  background: transparent;

  box-shadow: none;
}
.site-header.fixed-opaque,
.site-header.sticky-transparent {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}
/* Fixed Opaque Header */
.site-header.fixed-opaque {
  position: fixed !important;
  background: var(--secondary) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
  padding: 5px 0;
}

.site-header.header-default {
  position: static;
  background: var(--secondary) !important;
  backdrop-filter: blur(20px) !important;
  padding: 5px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Header Container */
.site-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

/* Branding / Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 100px;
}

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

.custom-logo {
  height: 112.62px;
  width: 142px;
  transition: all 0.3s ease;
}

.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;
  justify-content: space-between;
  background: transparent;
  transition: all 0.3s ease;
}

.primary-menu,
#primary-menu {
  display: flex;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.primary-menu li,
#primary-menu li {
  position: relative;
}

.primary-menu li a,
#primary-menu li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 10px 0;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a,
#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
  color: var(--primary);
}

/* 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: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: all 0.3s ease;
}

.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: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Desktop Dropdown */
.primary-menu .sub-menu,
#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;

  transition: all 0.1s ease;
}

.primary-menu li:hover > .sub-menu,
#primary-menu li:hover > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu li,
#primary-menu .sub-menu li {
  padding: 0;
}

.primary-menu .sub-menu li a,
#primary-menu .sub-menu li a {
  padding: 12px 20px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-menu .sub-menu li a:hover,
#primary-menu .sub-menu li a:hover {
  background: var(--primary);
  border-radius: 10px;
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-header {
  will-change: position;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.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(7px, -7px);
}

.mobile-menu-toggle:focus,
.primary-menu a:focus,
#primary-menu a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (min-width: 901px) {
  .site-header.fixed-opaque .custom-logo {
    height: 90px;
    width: 115px;
  }
}

/* Footer */
.site-footer {
  position: relative;

  background: #fff;
}
.footer-bg {
  position: absolute;
  bottom: 0;
  z-index: 0;
  right: 0;
}
.footer-bg img {
  max-width: 100%;
  height: auto;
}
.castle-container-large.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.footer-col h4 {
  font-size: 20px;
  font-family: var(--primary-font);

  color: #080808;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}
.footer-col ul li a {
  text-decoration: none;
  color: #333333;
  display: inline-flex;
  align-items: center;
}

.footer-col ul li a + a {
  margin-left: 4px;
}
.footer-col ul li {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  font-family: var(--primary-font);
  color: #333333;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}

.footer-col ul li i {
  min-width: 25px;
  font-size: 18px;
  margin-top: 2px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}
.footer-bottom-links {
  text-align: left;
  margin-top: 25px;
}
.footer-col span {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin: 50px 0;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.fa-brands,
.fa-solid {
  font-size: 25px;
}
.fa-brands,
.fa-solid {
  color: var(--secondary);
}

.footer-logo {
  text-align: left;
}
.footer-logo img {
  max-width: 240px;
  height: 200px;
  margin-bottom: 35px;
}
.affiliations {
  display: flex;
  text-align: left;

  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.affiliations img {
  height: 30px;
  width: auto;
}
.footer-bottom-links.social {
  margin-top: 95px;
}
.footer-bottom {
  margin-bottom: 0;
  position: relative;
  text-align: left;
  background: var(--secondary);
  z-index: 1;
}
.castle-container.footer-last {
  font-size: 12px;
  margin: auto;
  align-items: center;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  margin: 0;
  color: white;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .castle-container-large.footer {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .footer-logo img {
    max-width: 100%;
    width: 200px;
    height: auto;
    margin-bottom: 40px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

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

  .footer-col ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .affiliations img {
    height: 28px;
  }
}
@media (max-width: 900px) {
  .castle-container-large.footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 25px 20px;
    text-align: left;
  }
  .castle-container-large {
    padding: 0 20px;
  }
  .footer-col h4 {
    font-size: 17px;
  }

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

  .footer-col ul li {
    justify-content: flex-start;
    font-size: 13px;
  }

  .footer-col ul li i {
    margin-right: 8px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .affiliations {
    justify-content: flex-start;
  }

  .fa-brands,
  .fa-solid {
    font-size: 22px;
  }
  .castle-container.footer-last {
    display: block;
    line-height: 1.6;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .castle-container-large.footer {
    gap: 25px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

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

  .footer-col ul li {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-bottom-links.social {
    margin-top: 40px;
  }
}

@media (max-width: 468px) {
  .site-footer {
    padding-top: 40px;
  }

  .castle-container-large.footer {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-col h4 {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-col ul {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-col ul li {
    justify-content: center;
    font-size: 14px;
  }
  .affiliations,
  .social-icons {
    justify-content: center;
  }
  .footer-col ul li a {
    text-align: center;
    font-size: 14px;
  }

  .fa-brands,
  .fa-solid {
    font-size: 20px;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .social-icons {
    gap: 15px;
  }
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  max-width: 100%;
  height: 100%;
}
.overlay-hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 39.44%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0;
}

.hero-content h1 {
  font-family: var(--secondary-font);
  color: #fff;
  letter-spacing: -0.01em;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 100%;
  width: 1000px;
  margin: 0;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1200px) {
  .hero-section {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    display: block;
  }

  .hero-image {
    position: relative;
  }

  .hero-content {
    background: var(--secondary);
    padding: 16px 0;
    position: static;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
    color: #fff;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-btn {
    padding: 10px 0;
    font-size: 13px;
  }
}

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

.hero-btn {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--tertiary);
  text-decoration: none;
  font-family: var(--primary-font);
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 40px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  background: #e09a2a;
  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
}

@media (max-width: 900px) {
  /* Fixed Header on Mobile */
  .site-header {
    position: fixed !important;
    top: 0;
    font-family: var(--primary-font);
    left: 0;
    background: var(--secondary) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 15px 0;
    z-index: 1000;
  }
  .site-header.sticky-transparent {
    position: absolute !important;
    background: transparent !important;
    padding: 20px 0;
    box-shadow: none !important;
  }

  .site-header.fixed-opaque {
    position: fixed !important;
    background: var(--secondary) !important;
    padding: 15px 0;
  }
  body {
    padding-top: 0;
  }

  .site-header .custom-logo {
    height: 90px;
    width: 115px;
    padding: 10px;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .mobile-menu-toggle span {
    background: #fff;
    width: 25px;
    margin-bottom: 5px;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    width: 400px;
    max-width: 320px;
    height: 100vh;
    background: var(--secondary);
    padding: 40px 20px;
    z-index: 1000;
  }

  .main-navigation.toggled {
    transform: translateX(0);
  }

  /* Vertical Menu Items */
  .primary-menu,
  #primary-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .primary-menu li,
  #primary-menu li {
    width: 100%;
  }

  .primary-menu li a,
  #primary-menu li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    color: #fff;
  }

  /* Mobile Dropdown */
  .menu-item-has-children > a {
    position: relative;
  }

  .menu-item-has-children > a::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top-color: #fff;
  }

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

  .primary-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }
  .menu-item-has-children.active > .sub-menu {
    max-height: 500px;
  }

  .primary-menu .sub-menu li a,
  #primary-menu .sub-menu li a {
    font-size: 16px;
    padding: 10px 0;
    color: #000;
  }
  .hero-section {
    min-height: auto;
    display: block;
    margin-top: 0;
  }

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

  width: 100%;
}

.hero-content.single h1 {
  font-family: var(--primary-font);
  color: var(--primary);
  font-size: 58px;
  width: 100%;
  margin: 0;
}
.hero-content.single p {
  font-family: var(--secondary-font);
  color: rgba(255, 255, 255, 0.68);
  font-size: 32px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .hero-content.single h1 {
    font-size: 55px;
    line-height: 1;
  }
}
@media (max-width: 900px) {
  .hero-content.single {
    transform: translateX(0);
    position: static;
  }
  .overlay-hero {
    display: none;
  }

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

    color: #fff;
  }
}
@media (max-width: 768px) {
  .hero-content.single h1 {
    font-size: 40px;
  }
  .hero-content.single p {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .hero-content.single h1 {
    font-size: 38px;
  }
  .hero-content.single p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .hero-content.single h1 {
    font-size: 30px;
    line-height: 22px;
  }
}
/* =============
404 page
============== */
.error-404-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.error-404-container {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.error-404-number {
  font-size: 180px;
  font-weight: 900;
  background: linear-gradient(135deg, #fdb714 0%, #e5a712 100%);
  -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);
  animation: float 3s ease-in-out infinite;
}

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

.error-404-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.error-404-description {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.error-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.error-btn-primary {
  background: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}

.error-btn-primary:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 183, 20, 0.4);
}

.error-btn-secondary {
  background: transparent;
  color: #2d3748;
  border: 2px solid #2d3748;
}

.error-btn-secondary:hover {
  background: #2d3748;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 55, 72, 0.2);
}

.error-search-box {
  max-width: 500px;
  margin: 0 auto 50px;
}

.error-search-box .search-form {
  display: flex;
  gap: 10px;
}

.error-search-box .search-field {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.error-popular-links {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.error-popular-links h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  text-align: center;
}

.error-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.error-link-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f7fafc;
  border-radius: 15px;
  text-decoration: none;
  color: #2d3748;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.error-link-item:hover {
  background: #fdb714;
  color: white;
  transform: translateX(5px);
  border-color: #e5a712;
}

.error-link-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.error-link-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.mountain-illustration {
  margin: 40px 0;
  opacity: 0.6;
}

.mountain-illustration svg {
  width: 200px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .error-404-number {
    font-size: 120px;
  }

  .error-404-title {
    font-size: 32px;
  }

  .error-404-description {
    font-size: 16px;
  }

  .error-404-container {
    padding: 40px 25px;
  }

  .error-404-actions {
    flex-direction: column;
  }

  .error-btn {
    width: 100%;
  }

  .error-search-box .search-form {
    flex-direction: column;
  }

  .error-search-box .search-submit {
    width: 100%;
  }
}

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

  .error-404-title {
    font-size: 26px;
  }

  .error-404-container {
    padding: 30px 20px;
  }
}
