/* google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Shadows+Into+Light&display=swap');

/* Volstead Fonts */
@font-face {
    font-family: 'Volstead';
    src: url('../fonts/Volstead.eot');
    src: url('../fonts/Volstead.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Volstead.woff2') format('woff2'),
        url('../fonts/Volstead.woff') format('woff'),
        url('../fonts/Volstead.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Copperplate Fonts */
@font-face {
    font-family: 'Copperplate';
    src: url('../fonts/Copperplate-Bold.eot');
    src: url('../fonts/Copperplate-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Copperplate-Bold.woff2') format('woff2'),
        url('../fonts/Copperplate-Bold.woff') format('woff'),
        url('../fonts/Copperplate-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Copperplate';
    src: url('../fonts/CopperplateGothic-Light.eot');
    src: url('../fonts/CopperplateGothic-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CopperplateGothic-Light.woff2') format('woff2'),
        url('../fonts/CopperplateGothic-Light.woff') format('woff'),
        url('../fonts/CopperplateGothic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Custom Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 400; line-height: 1.5; background-color: #F3F0ED; color: #7B7B7B; min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
main { flex: 1; }
.copperplate-font { font-family: 'Copperplate', sans-serif; }
.volstead-font { font-family: 'Volstead', sans-serif; }
.handwritten-font { font-family: 'Shadows Into Light', sans-serif; }
.waiting-for-the-sunrise { font-family: "Waiting for the Sunrise", cursive; font-weight: 400; font-style: normal; }
h1, h2, h3, h4, h5, h6 { color: #131313; }
h1 { font-family: 'Copperplate'; font-size: clamp(42px, 6vw, 60px); font-weight: 300; line-height: 1.1; color: #fff; }
h1 .volstead-font { font-size: clamp(70px, 15vw, 200px); font-weight: 400; display: inline-block; line-height: 1; vertical-align: text-top; -webkit-transform: rotate(-3deg); transform: rotate(-3deg); }
h2 { font-family: 'Copperplate', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: bold; line-height: 1.1; }
h2.volstead-font,
h2 .volstead-font { font-size: clamp(60px, 8vw, 120px); font-weight: normal; line-height: 1; display: inline-block; }
h3 { font-size: clamp(24px, 3vw, 32px); line-height: 1.25; }
h4 { font-size: clamp(24px, 2.5vw, 28px); line-height: 1.2; }
h5 { font-size: clamp(20px, 3vw, 24px); line-height: 1.2; }
h6 { font-weight: 600; }
.fs-25 { font-size: clamp(20px, 3vw, 25px) }
.container { max-width: 1320px; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.pointer-events-none { pointer-events: none; }

.bg-black { background-color: #181818 !important; }
.bg-dark { background-color: #0B0B0B !important; }

.rounded-20 { border-radius: 20px; }
.rounded-3 { border-radius: 10px !important; }
.flex-1 { flex: 1; }
.section-space { padding: 100px 0; }

.text-link { font-size: 18px; text-underline-offset: 2px; }
.dark-text-link .icon,
.text-link .icon { max-width: 15px; transition: transform 0.3s ease; }
.text-link:hover .icon,
.dark-text-link:hover .icon { transform: translateX(5px); }
.dark-text-link { font-size: 18px; font-weight: 600; color: #0B0B0B; text-underline-offset: 3px; }
.text-dark { color: #2A2A2A !important; }

.btn { padding: 14px 24px; font-weight: 600; border-radius: 8px; line-height: 1.2; }
.btn-light { background-color: #fff; color: #0B0B0B; }
.btn-light:hover,
.btn-light:focus { background-color: #0B0B0B; color: #fff; }
.btn-outline-light { font-size: 16px; border: 1px solid #fff; padding: 12px 20px; }

.btn-secondary { background-color: #E2E2E2; color: #131313; border: none; }
.btn-secondary:hover { background-color: #131313; color: #fff; }

.btn.btn-dark { background-color: #0B0B0B; color: #ffffff; }
.btn.btn-dark .icon { -webkit-transition: filter 0.3s ease; transition: filter 0.3s ease; }
.btn.btn-dark:active,
.btn.btn-dark:hover,
.btn.btn-dark:focus { background-color: #fff; color: #0B0B0B; }
.btn.btn-dark:active .icon,
.btn.btn-dark:focus .icon,
.btn.btn-dark:hover .icon { filter: brightness(0); }

#loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #F3F0ED; z-index: 21474830000; display: flex; align-items: center; justify-content: center; padding: 0 15px; }
#loader #first .first-path, 
#loader #handwriting, 
#loader #last .last-path { opacity: 0; }
#loader #middle path {
    /* fill: #7D6351; */
    stroke-linecap: round; 
    stroke-linejoin: round;
}
#loader svg { max-width: 100%; }
body:not(.home) .loader-container { position: relative; width: 150px; height: 150px; }
#loader .loader-img { width: 100%; max-width: 150px; height: 150px; object-fit: contain; position: absolute; inset: 0; opacity: 0; transition: opacity 0.1s linear; }
#loader .loader-img.active { opacity: 1; }


/* Header */
.site-header { z-index: 99; }
.site-header .navbar-brand img { width: 100%; max-width: 350px; }
.site-header .sticky .navbar-brand img { max-width: 250px; }
.site-header .btn { padding: 12px 34px; line-height: 1.313; }
.site-header .navbar .navbar-nav >.nav-item > a { font-size: 18px; position: relative; }
.site-header .navbar .navbar-nav > .nav-item > a.active { font-weight: bold; }
.site-header .navbar .navbar-nav > .nav-item > a::before { content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background-color: #fff; border-radius: 5px; transition: width 0.3s ease; }
.site-header .navbar .navbar-nav > .nav-item > a:hover::before,
.site-header .navbar .navbar-nav > .nav-item > a.active::before { width: 100%; }
.site-header .navbar .btn:hover { background-color: #fff; color: #131313 !important; }
.site-header .navbar-toggler { outline: 0; box-shadow: none; }
.site-header .navbar-toggler .navbar-toggler-icon { filter: brightness(0) invert(1); }
.site-header .dropdown .dropdown-menu .dropdown-item { font-size: 18px; color: #1E1E1E; transition: all 0.3s ease; }
.site-header .dropdown .dropdown-menu .dropdown-item.active,
.site-header .dropdown .dropdown-menu .dropdown-item:hover { font-weight: bold; text-decoration: underline; text-underline-offset: 2px; transform: translateX(5px); }
.site-header .dropdown-toggle::after { vertical-align: middle; }
.site-header .navbar.sticky { position: fixed; top: 0; left: 0; z-index: 99; width: 100%; background-color: #fff; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; animation: fadeInDown 0.5s ease; padding: 8px 0 !important; }
.site-header .navbar.sticky .navbar-brand img { -webkit-filter: brightness(0); filter: brightness(0); }
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-header .navbar.sticky .navbar-nav >.nav-item > a { color: #000000 !important; }
.site-header .navbar.sticky .navbar-nav > .nav-item > a::before { background-color: #000000; }
.site-header .navbar.sticky .btn { border-color: #000000 !important; color: #000000 !important; }
.site-header .navbar.sticky .btn:hover { background-color: #000; color: #fff !important; }
.site-header .navbar-nav .dropdown-menu { box-shadow: #00000040 0px 5px 10px; }
.site-header .navbar.sticky .navbar-toggler { border-color: #000000 !important; filter: brightness(0); }
.home .site-header .navbar.sticky .navbar-brand { display: inline-block !important; }
.home .site-header .navbar.sticky .right-nav .navbar-collapse { justify-content: flex-end !important; }
.home .site-header .navbar.sticky > .container { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Footer */
.site-footer { padding: 60px 40px 30px; }
.site-footer p { font-size: 16px; }
.site-footer .btn-light:hover img { filter: brightness(0) invert(1); }
.site-footer .footer-form .form-control { outline: 0; box-shadow: none; background-image: url(../images/email-icon.svg); background-repeat: no-repeat; background-position: left 15px center; background-size: 20px; padding-right: 180px; }
.site-footer .footer-form .form-control::placeholder { color: #fff; }
.site-footer .footer-form .btn { padding: 9px 15px 9px 24px; right: 14px; border-radius: 5px; }
.site-footer ul li a { font-size: 16px; color: #fff; text-decoration: none; }
.site-footer ul li a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Hero Section */
.hero-section { background-image: url(../images/hero.jpg); background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 1; padding: 200px 0 100px; }
.hero-section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); z-index: -1; }

/* About Section */
.explore-our-section .explore-cards > div.aos-animate { transform: unset; }
.explore-our-section .explore-cards { --bs-gutter-x: 15px; }
.explore-our-section .card { border-radius: 10px; overflow: hidden; z-index: 1; transition: all 0.3s ease; }
.explore-our-section .card:hover { -webkit-transform: scale(1.13); transform: scale(1.13); box-shadow: 8px 7px 20px 4px rgb(0, 0, 0, 40%); z-index: 2; }
.explore-our-section .card > img { height: 430px; object-fit: cover; }
.explore-our-section .card .price { font-size: clamp(22px, 2.5vw, 30px); font-weight: 600; }
.explore-our-section .card .card-img-overlay { padding: 25px 20px; background: linear-gradient(0deg,rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%); z-index: 0; }
.explore-our-section .card .card-img-overlay::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.4); z-index: -1; transition: opacity 0.3s ease; }
.explore-our-section .card:hover .card-img-overlay::after { opacity: 0; }
.card-tags .tag-item { padding: 13px; }

/* Experience Section */
.experience-section .property-cards { --bs-gutter-x: 40px; row-gap: 40px; counter-reset: section; }
.experience-section .property-cards .card { padding: 40px; border-radius: 10px; transition: transform 0.3s ease; }
.experience-section .property-cards .card:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
.experience-section .property-cards .card p { font-size: 18px; color: #7B7B7B; }
.experience-section .property-cards .card::before { content: '0' counter(section); counter-increment: section; font-size: 22px; margin-left: auto; margin-bottom: 20px; }

/* Range of Experience Section */
.range-of-experience { background-image: url(../images/sketch-car-with-tree.png); background-repeat: no-repeat; background-position: top 1% right; background-size: 25%; }
.property-card .property-card-image-sliders .property-card-images-slider { position: relative; border-radius: 16px; }
.property-card .property-card-images-slider .swiper-slide img { width: 100%; max-height: 470px; aspect-ratio: 16/9; object-fit: cover; }
.property-card-thumb-images-slider { position: absolute; bottom: 30px; right: 30px; width: 50%; max-width: 525px; padding: 10px; border-radius: 10px; background-color: rgba(248, 248, 248, 0.8); }
.property-card-thumb-images-slider .swiper-slide img { min-height: 55px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; padding: 3px; outline: 2px solid transparent; cursor: pointer; }
.property-card-thumb-images-slider .swiper-slide.swiper-slide-thumb-active img { outline-color: #0B0B0B; }
.property-card-thumb-images-slider:not(.swiper-initialized) .swiper-wrapper { display: flex; flex-wrap: nowrap; }
.property-card-thumb-images-slider:not(.swiper-initialized) .swiper-wrapper .swiper-slide { flex: 1; }
.property-card .card-tags .tag-item { padding: 13px 18px; }

/* Three Steps Section */
.steps-wrapper .step-number { width: 64px; height: 64px; border-radius: 50%; background-color: #0B0B0B; color: #fff; font-size: 30px; font-weight: 600; }
.steps-wrapper .step-item:not(:last-child)::after { content: ''; width: 3px; height: 100%; background-color: #0B0B0B; position: absolute; top: 0; left: 31px; z-index: -1; }
.three-steps-section .step-right-image { max-width: calc(100% + 170px); margin-left: -70px; margin-right: -100px; }
.three-steps-section .step-left-image { max-width: calc(100% + 50px); margin-right: -50px; }
.three-steps-section .values-wrapper { gap: 60px; margin: 0; }
.three-steps-section .values-wrapper p { color: #000; }

.map-wrapper.row { --bs-gutter-x: 38px; row-gap: 30px; }
.map-wrapper .map-col { box-shadow: 0 4px 20px 4px rgba(0, 0, 0, 0.1); }
.map-col .btn { bottom: 20px; left: 20px; padding: 15px 16px; background-color: #9E9991; color: #fff; }
.map-col .btn:hover,
.map-col .btn:focus { background-color: #0B0B0B; }
.map-col .property-card { width: 100%; max-width: 230px; padding: 25px 12px; top: 20%; font-size: 14px; color: #000; }
.map-col .property-card > img { object-position: top; }
.map-col .property-card::after { content: ''; width: 25px; height: 10px; position: absolute; top: 100%; left: 20px; background-image: url(../images/down-box-arrow.svg); background-repeat: no-repeat; background-size: contain; }
.map-col .property-card .text-link { font-size: 14px; color: #000; text-decoration: none; }
.map-col .property-card .text-link .icon { max-width: 20px; }
.map-section .img-360 { width: 50%; max-width: 300px; }
.map-wrapper iframe + img { width: 100%; max-width: 50%; }

/* Testimonial Section */
.testimonial-section .testimonial-box { height: 100%; padding: 54px 28px; }
.testimonial-section .heading p,
.testimonial-section .testimonial-box p { color: #1E1E1E; }
.testimonial-slider-wrapper .testimonial-slider { overflow: visible; padding: 0 40px; padding-bottom: 60px; }
.testimonial-slider-wrapper .testimonial-item { height: auto; }
.swiper .swiper-scrollbar { width: 90%; max-width: 400px; bottom: 0px; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); background-color: #E1E1E1; }
.swiper .swiper-scrollbar .swiper-scrollbar-drag { background-color: #1A3C40; }

/* FAQ Section */
.faq-sec .left-shape { top: -80px; width: 100%; max-width: 25vw; left: -100px; }
.faq-section .faq-wrapper .accordion-item,
.faq-sec .faq-wrapper .accordion-item { background-color: transparent; border: none; padding-bottom: 24px; color: #7B7B7B; }
.faq-section .faq-wrapper .accordion-item .accordion-button,
.faq-sec .faq-wrapper .accordion-item .accordion-button { font-size: 24px; font-weight: 500; background-color: transparent; border: none; padding: 24px 28px; line-height: 1.5; box-shadow: none; outline: 0; border-radius: 10px !important; }
.faq-section .faq-wrapper .accordion-item .accordion-button:not(.collapsed),
.faq-sec .faq-wrapper .accordion-button:not(.collapsed) { background-color: transparent; box-shadow: none; color: #131313; }
.faq-section .faq-wrapper .accordion-item .accordion-body,
.faq-sec .faq-wrapper .accordion-item .accordion-body { padding: 0 28px; }
.faq-section .faq-wrapper .accordion-item .accordion-button:not(.collapsed)::after,
.faq-sec .faq-wrapper .accordion-item .accordion-button:not(.collapsed)::after { background-image: url(../images/minus.svg); -webkit-transform: unset; transform: unset; }
.faq-section .faq-wrapper .accordion-item .accordion-button::after,
.faq-sec .faq-wrapper .accordion-item .accordion-button::after { background-image: url(../images/plus.svg); background-position: center; }

/* Subscribe section */
.subscribe-section { background-image: url(../images/home-cta-bg.jpg); background-position: center; background-size: cover; margin-top: -40px; margin-bottom: -20px; }
.subscribe-section::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #F3F0ED; background: linear-gradient(180deg, rgba(243, 240, 237, 1) 0%, rgba(243, 240, 237, 0.8) 29%, rgba(243, 240, 237, 0.6) 62%, rgba(243, 240, 237, 0) 100%); z-index: -1; }
.subscribe-section::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%); z-index: -1; }
.subscribe-form-box { padding: 38px 35px; width: 100%; max-width: 915px; margin: 0 auto; }
.form-wrap .form-group { margin-bottom: 36px; }
.form-wrap .form-group label { font-size: 18px; font-weight: 500; color: #2A2A2A; line-height: 1.2; display: block; margin-bottom: 10px; }
.form-wrap .form-group input { font-size: 16px; padding: 14px 18px; background-color: #F6F6F6; color: #2A2A2A; border: 1px solid #F6F6F6; border-radius: 8px; line-height: 1; box-shadow: none; outline: 0; }
.form-wrap .form-group textarea::placeholder,
.form-wrap .form-group input::placeholder { color: #A2A2A2; }
.form-wrap .form-group input:focus { border-color: #0B0B0B; }

/* ----- Lodges Page ----- */
.inner-hero { padding: 200px 0 100px; }
.inner-hero .hero-bg-img { z-index: -1; }
.inner-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000000; opacity: 30%; z-index: -1; }
.lodges-collection .sketch-img { width: calc(100% + 150px); margin-left: -150px; margin-top: -60px; max-width: unset; }
.property-card .property-overlay::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; background: #000000; background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); pointer-events: none; }

/* Cta */
.cta-section { padding: 130px 0; margin-bottom: -20px; }
.cta-section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(270deg,#07070700 20%, rgb(7, 7, 7, 0.9) 100%); z-index: -1; }
.cta-section .cta-bg-img { z-index: -1; }
.cta-section .btn { padding: 12px 32px; }
.cta-section ul li { background-image: url(../images/stars-light-sparkle.svg); background-repeat: no-repeat; background-position: left center; padding-left: 35px; color: #fff; }

/* Video Section */
.video-section .video-wrap { height: 650px; }
.video-section .video-toggler { height: 170px; width: 170px; border-radius: 50%; background-color: #ffffff40; transition: background-color 0.3s ease; }
.video-section .video-toggler:hover { background-color: #00000080; }
.video-section .video-toggler .play-icon { margin-right: -10px; }
.video-section .video-toggler .pause-icon { display: none; }
.video-section .video-toggler.pause .play-icon { display: none; }
.video-section .video-toggler.pause .pause-icon { display: block; }
.video-section .sparrow-img { max-width: 210px; width: calc(100% + 120px); height: 100%; margin-right: -120px;  }

/* ----- Eagles Rest Lodge Page ----- */
.about-section .about-box { box-shadow: 0 5px 73px 17px rgba(0, 0, 0, 6%); }

/* Gallery Section */
.gallery-section .swiper:not(.swiper-initialized) .swiper-wrapper { display: flex; flex-wrap: nowrap; gap: 20px; }
.gallery-section .swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide { flex: 0 0 33.33%; }
.gallery-section .swiper-slide img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-section .nogap-gallery .swiper-slide img { aspect-ratio: unset; height: 500px; }
.gallery-section .swiper-button-prev { left: 28px; opacity: 0.5; }
.gallery-section .swiper-button-prev:hover { opacity: 1; }
.gallery-section .swiper-button-next { right: 28px; opacity: 0.5; }
.gallery-section .swiper-button-next:hover { opacity: 1; }
.gallery-section .swiper-button-next svg,
.gallery-section .swiper-button-prev svg { display: none; }

/* FAQ Section */
.faq-section .faq-wrapper .accordion-item { background-color: #fff; border-radius: 10px; padding: 0; }
.faq-section .faq-wrapper .accordion-item:not(:last-child) { margin-bottom: 18px; }
.faq-section .faq-wrapper .accordion-item .accordion-button { padding: 40px 30px; display: block; }
.faq-section .faq-wrapper .accordion-item:has(.type-logo) .accordion-button { padding-left: 15px; }
.faq-section .faq-wrapper .accordion-item .accordion-button.collapsed { padding: 40px 30px; }
.faq-section .faq-wrapper .accordion-item .accordion-button.collapsed p { display: none; }
.faq-section .faq-wrapper .accordion-item .accordion-button p { font-size: 18px; font-weight: 400; color: #7B7B7B; }
.faq-section .faq-wrapper .accordion-item .accordion-button::after { background-size: 14px; position: absolute; top: 43px; right: 25px; }
.faq-section .faq-wrapper .accordion-item .faq-content-box { background-color: #F4F4F4; border-radius: 10px; padding: 20px 30px; }
.faq-section .faq-wrapper .accordion-item .accordion-body { padding: 0 30px 30px; }
.faq-section .faq-wrapper .accordion-item .accordion-body p { font-size: 18px; }
.faq-section .faq-wrapper .accordion-item table th,
.faq-section .faq-wrapper .accordion-item table td { font-size: 18px; width: 50%; padding: 8px 0; }
.faq-section .faq-wrapper .accordion-item:has(.collapsed) .type-logo { display: none; }
.faq-section .faq-wrapper .accordion-item h3 { font-size: 55px; color: #7B7B7B; line-height: 1; }
.faq-section .faq-wrapper .accordion-item .faq-content-box h4 { font-size: 45px; color: #7B7B7B; }
.faq-section .faq-wrapper .accordion-item .faq-content-box i { font-size: 14px; display: block; }
.faq-section .faq-wrapper .accordion-item .faq-content-box ul li { font-size: 18px; padding: 8px 0; }
.faq-section .faq-images img { position: absolute; top: 0; left: 0; width: 100%; height: 600px; object-fit: cover; border-radius: 10px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.faq-section .faq-images img.active { opacity: 1; visibility: visible; }

.faq-section .right-sketch { right: -20px; }

/* Exciting Experiences Section */
.exciting-experiences-section .info-box { margin-bottom: -50px; }
.exciting-experiences-section .property-card-thumb-images-slider { width: 45%; top: -120px; bottom: auto; right: 0; }
.exciting-experiences-section .property-card .property-overlay::after { background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.78) 66%, rgba(0, 0, 0, 0) 100%); opacity: 40%; }

/* Campsites */
.campsites-gallery { row-gap: 38px; --bs-gutter-x: 38px; }
.campsites-gallery .gallery-img { width: 100%; height: 450px; object-fit: cover; border-radius: 12px; }
.campsites-about { --bs-gutter-x: 38px; }

.property-card .left-sketch { margin-left: -250px; position: relative; z-index: 2; max-width: 42vw; }

/* Conservation Sustainability Page */
.faq-section .row .left-sketch { margin-left: -200px; position: relative; z-index: 2; max-width: 42vw; }
.faq-section .faq-wrapper .style-2 .accordion-item .accordion-button:not(.collapsed) { padding-bottom: 16px; }
.faq-section .accordion .accordion-body ul li { font-size: 18px; }

/* Experiences Page */
.faq-section .cus-list-style li { position: relative; padding-left: 25px; }
.faq-section .cus-list-style li::before { content: ""; position: absolute; left: 8px; top: 10px; width: 5px; height: 5px; background-color: #7B7B7B; border-radius: 50%; }
.faq-section .property-card .property-card-images-slider .swiper-slide img { max-height: 300px; }
.faq-section .property-card-thumb-images-slider { padding: 5px; right: 15px; bottom: 15px; }
.faq-section .property-card-thumb-images-slider .swiper-slide img { min-height: 35px; } 
.images-group img { flex: 1; height: 0; object-fit: cover; }

.experience-faq .heading h2 { line-height: 1; }
.experience-faq .heading h2 .volstead-font { margin-top: -40px; }

/* Contact Page */
.fs-14 { font-size: 14px; }
.contact-section h3 { color: #000000; }
.contact-section .form-label { font-weight: 500; font-size: clamp(20px, 3vw, 24px); color: #1B1B1B; } 
.contact-section .form-control:focus, 
.contact-section .form-select:focus { border-color: #9E9991; outline: unset; box-shadow: unset; }
.contact-section textarea.form-control { height: 170px; }
.contact-section .form-control, 
.contact-section .form-select { border-radius: 12px; background-color: #fff; border: 1px solid #EBEBEB; font-size: 18px; line-height: 1.3; color: #000; }
.contact-section .form-control::placeholder { color: #575757; }
.contact-section .form-select { color: #575757; --bs-form-select-bg-img: url('../images/arrow_drop_down.svg'); background-size: 24px; background-position: right 24px center; }
.contact-section .image-container { position: relative; border-radius: 12px; overflow: hidden; } 
.contact-section .image-container .contact-img { width: 100%; height: 490px; object-fit: cover; } 
.contact-section .social-icons { position: absolute; bottom: 20px; right: 20px; display: flex; gap: 10px; } 
.contact-section .social-icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.5s ease; } 
.contact-section .contact-card { background-color: #fff; border-radius: 15px; display: flex; align-items: center; border: 1px solid #EBEBEB; } 
.contact-section .card-icon-wrapper { flex: none; width: 52px; height: 52px; background-color: #F5F5F5; border-radius: 50%; display: flex; align-items: center; justify-content: center; } 
.contact-section .card-content p { color: #000; } 
.contact-section .card-content a { color: #000; text-decoration: underline; transition: color 0.5s ease; } 
.contact-section .card-content a:hover { color: #9E9991; }
.contact-section .btn { background-color: #9E9991; color: #fff; width: 100%; }
.contact-section .btn:hover { background-color: #000; }
.contact-section h6 { font-size: 18px; line-height: 1.444; margin-bottom: 4px; }
.contact-section .social-icon:hover { background-color: #9E9991; }
.contact-wrapper { --bs-gutter-x: 34px; }

.contact-map-section .map-image { width: 100%; }
.contact-map-section .map-col { box-shadow: 0 4px 20px 4px rgba(0, 0, 0, 0.1); }
.contact-map-section .map-col .property-card::after { left: 50%; transform: translateX(-50%); }
.ask-otjiwa-circle span { font-size: clamp(25px, 3vw, 50px); line-height: 1; color: #FFFFFF; rotate: calc(-13deg); }
.ask-otjiwa-circle { top: -60px; right: -23px; background-color: #746E65; border-radius: 50%; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 20px 5px rgba(0, 0, 0, 0.16); }

#bookPopup .modal-dialog { width: 95%; max-width: 700px; margin: 0 auto; }
#bookPopup .property-image img { object-fit: cover; }

.map-section .iframe-360 { min-height: 100%; }

.booking-modal .modal-dialog { max-width: 95%; }
.booking-modal iframe { width: 100%; min-height: 98%; }

#gh-widget-root .gh-welcome-icon svg { width: 30px; height: auto; }
#gh-widget-root .gh-send svg, 
#gh-widget-root .gh-close svg, 
#gh-widget-root .gh-header-avatar svg { width: 20px; height: auto; }

.signature-container .byline { font-size: 12px; font-weight: 400; letter-spacing: 4px; color: #ffffff; margin-bottom: 10px; text-transform: uppercase; }
.signature-container .name { -webkit-transform: rotate(-2deg); transform: rotate(-2deg); }
.signature-container::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 180px; height: 3px; background: linear-gradient(to right, transparent, #b38b5d, transparent); opacity: 0.4; }


/* Media Query */
@media screen and (max-width: 1350px) {
    .explore-our-section .card:hover { -webkit-transform: scale(1.05); transform: scale(1.05); }
    .ask-otjiwa-circle { right: 20px; }
}

@media screen and (max-width: 1200px) {
    .site-footer { padding: 60px 0 30px; }
    .experience-section .property-cards .card { padding: 24px; }
    .experience-section .property-cards { --bs-gutter-x: 20px; row-gap: 20px; }
    .three-steps-section .values-wrapper { gap: 20px; }
    .map-col .property-card { top: 12%; }
    .faq-section .left-shape { top: -20px; left: -50px; }
    .lodges-collection .sketch-img { width: calc(100% + 50px); margin-left: -50px; }
    .video-section .video-wrap { height: auto; aspect-ratio: 16/9; }
    .faq-section .right-sketch { width: 100%; max-width: 25vw; right: 0; }
    .map-wrapper.row,
    .campsites-about { --bs-gutter-x: 20px; }
    .campsites-gallery { row-gap: 20px; --bs-gutter-x: 20px; }
    .ask-otjiwa-circle { width: 120px; height: 120px; }
    .faq-section .faq-wrapper .accordion-item .accordion-body p.fs-5 { font-size: 18px !important; }
}

@media screen and (max-width: 1024px) {
    .about-section .container { padding: 0; }
    .about-section .about-box { border-radius: 0 !important; position: static !important; transform: none !important; }
}

@media screen and (max-width: 991px) {
    body { font-size: 18px; }
    .section-space { padding: 80px 0; }
    .site-header .navbar-brand  img { width: 100%; max-width: 250px; }
    .site-header .navbar-collapse { position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; }
    .site-header .navbar-collapse .navbar-nav { padding: 20px 15px; }
    .site-header .navbar-collapse .navbar-nav > .nav-item { margin-bottom: 15px; }
    .site-header .navbar-collapse .navbar-nav > .nav-item > a { padding: 0; margin: 0 !important; display: inline-block; color: #131313 !important; }
    .site-header .navbar-collapse .navbar-nav > .nav-item > a::before { bottom: 0px; background-color: #131313; }
    .site-header .navbar-collapse .btn-outline-light { border-color: #131313 !important; color: #131313 !important; } 
    .site-header .navbar-collapse .btn-outline-light:hover { background-color: #131313 !important; color: #fff !important; } 
    .site-header .navbar-nav .dropdown-menu { box-shadow: none; }

    .three-steps-section .step-right-image { max-width: calc(100% + 120px); margin-left: -20px; margin-right: -100px; }
    .three-steps-section .step-left-image { max-width: calc(100% + 20px); margin-right: -20px; }
    .map-col .property-card { top: 5%; }
    .steps-wrapper .step-number { width: 50px; height: 50px; font-size: 24px; }
    .steps-wrapper .step-item:not(:last-child)::after { left: 24px; }
    .faq-wrapper .accordion-item .accordion-button { padding: 15px; }
    .faq-wrapper .accordion-item .accordion-body { padding: 10px 15px 15px; }
    .subscribe-section { margin-top: 0; }
    .cta-section { padding: 80px 0 100px; }
    .faq-section .faq-images { height: 500px; }
    .faq-section .faq-images img { height: 100%; }
    .gallery-section .nogap-gallery .swiper-slide img { height: 400px; }
    .faq-section .row .left-sketch { margin-left: -150px; max-width: 40vw; }
    .contact-section .form-control, 
    .contact-section .form-select,
    .contact-section h6 { font-size: 16px; }
    .contact-map-section .map-image { height: 450px; }
    .contact-360-section .iframe-360 { height: 350px; }
}

@media screen and (max-width: 767px) {
    .site-header .sticky .navbar-brand img,
    .site-header .navbar-brand img { max-width: 220px; }
    .dark-text-link,
    .text-link,
    body { font-size: 16px; }
    .site-header .text-link { display: block; margin-left: 0 !important; }
    .site-footer .footer-form .form-control { padding-right: 140px; padding-left: 40px !important; background-position: left 10px center; }
    .site-footer .footer-form .btn { padding: 9px 12px; right: 8px; }
    .property-card .property-card-images-slider .swiper-slide img { height: 350px; }
    .lodges-collection .property-card .property-card-images-slider .swiper-slide img { height: 400px; }
    .property-card-thumb-images-slider { width: 100%; max-width: 300px; right: 10px; bottom: 10px; }
    .property-card .property-amenities { width: 100% !important; bottom: 80px !important; max-height: 215px; overflow: auto; }
    .steps-wrapper .step-number { width: 40px; height: 40px; font-size: 20px; }
    .steps-wrapper .step-item:not(:last-child)::after { left: 18px; }
    .three-steps-section .step-left-image { max-width: 50%; margin-right: 0; margin-bottom: -30%; margin-left: -12%; }
    .three-steps-section .step-right-image { max-width: 50%; margin-right: 0; margin-left: auto; margin-top: -12%; }
    .testimonial-section .testimonial-box { padding: 24px; }
    .faq-section .left-shape { max-width: 30vw; }
    .faq-sec .left-shape { top: -20px; left: 0; }
    .faq-sec .faq-wrapper .accordion-item .accordion-button { padding: 0; font-size: 20px; }
    .faq-sec .faq-wrapper .accordion-item .accordion-body { padding: 15px 0; }
    .faq-sec .faq-wrapper .accordion-item .accordion-button::after { background-size: 16px; }
    .subscribe-form-box { padding: 24px; }
    .lodges-collection .sketch-img { width: 100%; margin-left: -20px; margin-top: -20px; max-width: 250px; margin-bottom: 10px; }
    .map-section .iframe-360 { aspect-ratio: 1/1; }
    .video-section .video-toggler { height: 70px; width: 70px; }
    .video-section .video-toggler img { max-width: 25px; }
    .video-section .video-toggler .play-icon { margin-right: -5px; }
    .video-section .sparrow-img { display: none; }
    .faq-section .faq-images { height: auto; aspect-ratio: 1/1; }
    .faq-section .faq-wrapper .accordion-item img.type-logo { display: none !important; }
    .faq-section .faq-wrapper .accordion-item .accordion-button.collapsed,
    .faq-section .faq-wrapper .accordion-item .accordion-button { padding: 20px; }
    .faq-section .faq-wrapper .accordion-item:has(.type-logo) .accordion-button { padding-left: 20px; }
    .faq-section .faq-wrapper .accordion-item .accordion-button h5 { padding-right: 20px; }
    .faq-section .faq-wrapper .accordion-item .accordion-button::after { top: 20px; right: 15px; }
    .faq-section .faq-wrapper .accordion-item .accordion-button p { font-size: 16px; }
    .faq-section .faq-wrapper .accordion-item .faq-content-box { padding: 10px 20px; }
    .faq-section .faq-wrapper .accordion-item .accordion-body { padding: 0 20px 20px; }
    .faq-section .faq-wrapper .accordion-item .accordion-body p,
    .faq-section .faq-wrapper .accordion-item .faq-content-box ul li,
    .faq-section .faq-wrapper .accordion-item table th, 
    .faq-section .faq-wrapper .accordion-item table td { font-size: 16px !important; display: block; width: 100%; }
    .faq-section .faq-wrapper .accordion-item table td { padding-top: 0; }
    .gallery-section .swiper-button-prev { left: 10px; }
    .gallery-section .swiper-button-next { right: 10px; }
    .exciting-experiences-section .info-box { margin-bottom: 100px; }
    .exciting-experiences-section .property-card-thumb-images-slider { width: 80%; top: -80px; }
    .campsites-gallery { row-gap: 15px; --bs-gutter-x: 15px; }
    .campsites-gallery .gallery-img { height: auto; aspect-ratio: 1/1; }
    .campsites-about img { max-height: 500px; }
    .faq-section .row .left-sketch { margin-left: -50px; margin-top: -50px; margin-bottom: 20px; max-width: 60vw; }
    .contact-section .image-container .contact-img { height: 350px; }
    .contact-section .social-icon { width: 35px; height: 35px; }
    .ask-otjiwa-circle { display: none; }
    .about-content .images-group { position: static !important; }
    .experience-faq .heading h2 .volstead-font { margin-top: 0; }
    .faq-section .accordion .property-card-thumb-images-slider { max-width: 250px; }
    .community-cultural-section .row img.img-fluid { height: auto !important; }
    #bookPopup .property-image img { width: 60px; }
    #bookPopup .btn { padding: 10px 20px; }
}