@font-face {
    font-family: 'Inclusive Sans';
    src: url('../fonts/InclusiveSans.woff');
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/arial.woff');
}

:root {
    --theme-orange: #d06a21;
    --bg-main: #FEF9F0;
    --bg-alt: #f6efdf;

    --theme-gold: #C9A96E;
    --text-main: #2E2A25;
    --text-muted: #6B6257;


    --theme-green: #081b15;
    --theme-yellow: #C9A24D;
    --theme-white: #fff;
    --font-black: #171717;
    --bg-light-yellow-1: #F2EAD3;
    --bg-light-yellow-2: #F9F5F0;
    --font-inclusive: 'Inclusive Sans';
    --font-arial: 'Arial';
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-inclusive);
    font-size: 18px;
    line-height: 1.3em;
    color: var(--text-main);
    overflow-x: hidden;
}

body:not(.elementor-page) a {
    text-decoration: none;
    color: var(--theme-yellow);
}

body:not(.elementor-page) p {
    font-size: 18px;
    color: var(--text-main);
    font-family: var(--font-inclusive);
    line-height: 1.5em;
}

body:not(.elementor-page) li {
    font-size: 18px;
    margin-bottom: 10px;
}

body:not(.elementor-page) h1,
body:not(.elementor-page) h2,
body:not(.elementor-page) h3,
body:not(.elementor-page) h4,
body:not(.elementor-page) h5,
body:not(.elementor-page) h6 {
    font-family: var(--font-arial);
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3em;
}

body:not(.elementor-page) h1,
body:not(.elementor-page) h1 a {
    font-size: 34px;
}

body:not(.elementor-page) h2,
body:not(.elementor-page) h2 a {
    font-size: 30px;
}

body:not(.elementor-page) h3,
body:not(.elementor-page) h3 a {
    font-size: 26px;
}

body:not(.elementor-page) h4,
body:not(.elementor-page) h4 a {
    font-size: 20px;
}

body:not(.elementor-page) h5,
body:not(.elementor-page) h5 a {
    font-size: 18px;
}

body:not(.elementor-page) h6,
body:not(.elementor-page) h6 a {
    font-size: 16px;
}

section {
    padding: 70px 0;
}

button {
    cursor: pointer;
    font-family: var(--font-inclusive);
    font-size: 18px;
    border: none;
}

body.menu-open {
    overflow: hidden;
}

input,
textarea,
select {
    font-family: var(--font-inclusive);
    font-size: 16px;
    color: var(--text-main);
    border: none;
    border-radius: 8px;
    padding: 10px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 2px;
}

input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin-bottom: 0;
    margin-right: 15px;
    border: none;
    border-radius: 0;
    display: inline-block;
    position: static;
}

input[type=submit] {
    width: fit-content;
}

footer input[type=submit] {
    background-color: var(--theme-yellow);
    color: var(--text-white);
}

footer input[type=submit]:hover {
    background-color: white;
    color: var(--text-main) !important;
}

label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

select option {
    color: var(--text-main);
    font-size: 16px;
    font-family: var(--font-inclusive);
    line-height: 1.3em;
    padding: 10px;

}

select option:checked {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
}

input:focus,
textarea:focus {
    outline: none;
}

/* new colors */
.bg-orange {
    background-color: var(--theme-orange);
}

.text-orange {
    color: var(--theme-orange) !important;
}

.bg-main {
    background-color: var(--bg-main);
}

.bg-alt {
    background-color: var(--bg-alt);
}


/* old color */
.bg-light-yellow-1 {
    background-color: var(--bg-light-yellow-1);
}

.bg-light-yellow-2 {
    background-color: var(--bg-light-yellow-2);
}

.bg-yellow {
    background-color: var(--theme-yellow);
}

.bg-green {
    background-color: var(--theme-green);
}

.bg-white {
    background-color: var(--theme-white);
}

.theme-yellow-btn,
.theme-green-btn {
    background-color: var(--theme-orange);
    border-radius: 8px;
    color: var(--theme-white) !important;
    padding: 10px 20px;
    font-size: 17px;
    line-height: 1.3em;
}

.theme-green-btn {
    background-color: var(--theme-green);
}

.theme-yellow-btn:hover {
    background-color: var(--theme-yellow);
}

.theme-green-btn:hover {
    background-color: var(--theme-yellow);
}

.text-white {
    color: var(--theme-white) !important;
}

.text-black {
    color: var(--text-main) !important;
}

.text-yellow {
    color: var(--theme-yellow) !important;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light-yellow-1);
    border-top: 5px solid var(--theme-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Visitor Popup Styles */
.visitor-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visitor-popup.show {
    opacity: 1;
}

.popup-content {
    background-color: var(--theme-white);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.5s ease;
}

.visitor-popup.show .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--theme-yellow);
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-content form .form-group {
    margin-bottom: 15px;
}

.popup-content form input {
    margin-bottom: 0;
}


/* header start */
header {
    position: relative;
    display: contents;
}

header .header-top {
    padding: 12px 8px;
    border-bottom: 2px solid var(--theme-yellow);
}

header .header-top .container-fluid,
header .header-bottom .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

header .header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-right .header-social {
    display: flex;
    gap: 10px;
}

.header-top-right .header-social a i {
    font-size: 24px;
    color: #fff;
}

.header .header-top-right .country-selector {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

header .header-top-right .country-selector .country-flag {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

header .header-top-right .country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--theme-white);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
}

header .header-top-right .country-btn .country-name {
    font-size: 16px;
}

header .header-top-right .country-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 6px 0;
    margin: 6px 0 0;
    width: 100px;
    display: none;
    z-index: 9999;
}

header .header-top-right .country-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-main);
    font-size: 16px;
    text-decoration: none;
}

header .header-top-right .country-menu li a:hover {
    background: #f3f6f3;
}


header .header-top-right .header-review-logo {
    border-left: 1px solid var(--theme-white);
    padding-left: 15px;
    color: #fff;
}

header .header-top-right .header-review-logo:hover {
    color: var(--theme-yellow);
}

header .header-top-right .header-review-logo:first-child {
    border-left: none;
    padding-left: 0;
}

header .header-top-right .header-review-logo img {
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

header .header-top .container-fluid .header-line {
    margin-bottom: 0;
    color: var(--theme-white);
    font-size: 16px;
}

header .header-top .header-social-media {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

header .header-top .header-social-media li {
    margin-left: 10px;
}

header .header-top .header-social-media i {
    font-size: 26px;
}

header .header-bottom {
    padding: 12px 8px;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--bg-light-yellow-2);
}

header .header-bottom .logo-container img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

header .header-menu-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

header .header-menu-container nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
}

header .header-menu-container nav ul li {
    margin: 2px 5px;
    position: relative;
}

header .header-menu-container nav ul li a {
    padding: 8px 14px;
    color: var(--text-main);
    position: relative;
    display: block;
    font-weight: 600;
}

header .header-menu-container nav ul li.menu-item.current-menu-item a {
    color: var(--theme-orange);
}

header .header-menu-container nav ul li a:hover {
    color: var(--theme-orange);
}

/* header submenu */
header .header-menu-container nav ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: max-content;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 100%;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    text-align: left;
    display: block;
    z-index: 100;
}

header .header-menu-container .sub-menu {
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, .08));
}

header .header-menu-container .submenu-toggle {
    display: none;
}

header .header-menu-container .sub-menu li a {
    padding: 4px 10px;
}

header .header-menu-container nav ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

header .header-menu-container nav .sub-menu li {
    padding: 5px 10px 5px 0;
    word-wrap: nowrap;
}

header .header-menu-container nav ul>li.menu-item-has-children>a::after {
    content: '\ea4e';
    font-family: 'remixicon';
    font-size: 24px;
    color: var(--text-main);
    position: absolute;
    right: -12px;
}

header .header-menu-container nav ul>li.menu-item-has-children:hover>a::after {
    color: var(--theme-yellow);
}

/* inner submenu */
header .header-menu-container nav ul ul li ul {
    left: 100%;
    right: auto;
}

header .header-menu-container nav ul .sub-menu li.menu-item-has-children a {
    display: block;
}

header .header-menu-container nav ul .sub-menu li {
    padding: 5px 14px 5px 0;
}

header .header-menu-container nav ul .sub-menu li.menu-item-has-children>a::after {
    right: -18px;
    transform: rotate(270deg);
}

header .header-menu-container nav ul>li:hover>ul li:hover ul {
    left: 100%;
    right: auto;
    top: 0;
}

/* mobile-menu */
header .header-menu-container nav .close-btn {
    display: none;
    color: var(--theme-yellow);
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
}

header .header-bottom .mobile-nav-toggler {
    padding: 10px 0;
    position: relative;
    cursor: pointer;
    display: none;
}

header .header-bottom .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 3px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    transition: all 300ms ease;
    background-color: var(--theme-yellow);
}

header .header-bottom .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0;
}




/* Page Header */
.page-header {
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-header h1 {
    color: var(--theme-white) !important;
    position: relative;
    z-index: 1;
    font-size: 40px;
    letter-spacing: 2px;
    display: inline-block;
    max-width: 50ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 8px;
}

.page-header-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    padding: 12px 20px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-header-breadcrumb li {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.page-header-breadcrumb li a {
    color: var(--theme-orange) !important;
    white-space: nowrap;
}

.page-header-breadcrumb li span {
    display: inline-block;
    max-width: 50ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 8px;
}

.page-header-breadcrumb li a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    align-items: center;
}

.pagination .pagination-arrow {
    padding: 6px 5px 6px 6px;
    line-height: 1;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid transparent;
}

.pagination .pagination-arrow:hover {
    color: var(--theme-gold);
    border-color: var(--theme-gold);
}

.pagination-btn {
    padding: 7px 12px;
    color: var(--text-main);
    background-color: var(--bg-light-yellow-2);
    border-radius: 5px;
    border: 2px solid var(--theme-yellow);
    line-height: 1;
}

.pagination-btn:hover {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
}

.pagination-btn.active {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
}

.page-header.package-detail-page {
    height: auto;
    background: transparent;
}

.package-detail-page .page-header-breadcrumb {
    position: relative;
    left: 0;
    transform: translateX(0);
    padding: 0;
}

/* Page Header end */

/* header end */

/* ========== Hero Slider Section ========== */
.hero-slider-section {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 85vh;
    min-height: 500px;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(8, 27, 21, 0.85) 0%,
            rgba(8, 27, 21, 0.55) 40%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slide-content h1,
.hero-slide-content p {
    color: var(--theme-white) !important;
}

.hero-slide-content h1 {
    font-size: 44px !important;
}

.hero-slide-content p {
    font-size: 20px !important;
}

.swiper-slide-active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content h1 {
    font-family: var(--font-arial);
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15em;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
    font-family: var(--font-inclusive);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7em;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-btn {
    display: inline-block;
    background-color: var(--theme-yellow);
    color: #ffffff !important;
    padding: 14px 34px;
    font-size: 17px;
    font-family: var(--font-inclusive);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(201, 162, 77, 0.35);
}

.hero-cta-btn:hover {
    background-color: var(--theme-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(8, 27, 21, 0.45);
}

.hero-cta-btn i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* Hero Slider Navigation Arrows */
.hero-btn-prev,
.hero-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-btn-prev {
    left: 24px;
}

.hero-btn-next {
    right: 24px;
}

.hero-btn-prev i,
.hero-btn-next i {
    font-size: 22px;
    color: #ffffff;
    line-height: 1;
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
    background: var(--theme-yellow);
    border-color: var(--theme-yellow);
    box-shadow: 0 4px 20px rgba(201, 162, 77, 0.4);
}

/* Hero Slider Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.35s ease;
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--theme-yellow);
    border-color: var(--theme-yellow);
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(201, 162, 77, 0.5);
}

/* ========== Hero Slider Section End ========== */



/* List styles */
.workshop-content-container .list-checked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.list-checked {
    list-style: none;
    padding: 0;
}

.list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}

.list-checked li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-yellow);
    font-weight: 900;
    font-size: 18px;
}

/* list styles end */

/* 404 page start */
.error-container {
    text-align: center;
    padding: 60px 0;
}

.error-container h1 {
    font-size: 200px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.error-container h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 20px;
    margin-bottom: 60px;
}

/* 404 page end */

/* Campaign announcement */
.campaign-announcement {
    padding: 30px 45px 38px;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: 1200px;
    margin: 40px auto 40px;
    position: relative;
}

.campaign-announcement::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}

.campaign-announcement .campaign-info {
    position: relative;
    z-index: 1;
}

.campaign-announcement h2 {
    font-size: 38px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.campaign-announcement p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 40px;
}

.campaign-announcement .theme-yellow-btn {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Campaign announcement end */



/* Video section start */
.hero-video-wrapper {
    position: relative;
    padding: 0 5px;
}

.hero-video {
    height: 82vh;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Video section end */


/* achivements-section */
.achivements-section .ach-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.achivements-section .ach-img-container img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.achivements-section .ach-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.achivements-section .ach-text-container p {
    margin-bottom: 0;
}

.achivements-section .ach-text-container a {
    font-weight: 600;
}

/* achivements-section end */

/* CTA-section */
.cta-section {
    padding: 60px 0 0;
}

.cta-section .cta-text-container {
    text-align: center;
    border-radius: 20px;
    box-shadow: #c79a55 0px 3px 3px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: 0.5s all ease-in;
    border: 10px solid #fff;
}

.cta-section .cta-text-container:hover::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 1;
}

.cta-section .cta-text-container img {
    height: 305px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cta-section .cta-text-container .image-container {
    position: relative;
}

.cta-section .cta-text-container .image-container .food-icon {
    position: absolute;
    bottom: 5px;
    z-index: 1;
    right: 32px;
    font-size: 30px;
    background-color: var(--theme-yellow);
    color: #fff;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
}

.cta-section .cta-text-container h2 {
    font-size: 22px;
    font-weight: 900;
    position: absolute;
    bottom: -50px;
    width: 100%;
    transition: 0.5s all ease-in;
    color: #fff;
}

.cta-section .cta-text-container:hover h2 {
    bottom: 20px;
    z-index: 3;
}

.cta-section .cta-text-container p {
    margin-bottom: 30px;
}

/*.cta-section .cta-text-container .theme-green-btn:hover, .cta-section .cta-text-container .theme-yellow-btn:hover{*/
/*	background-color: #fff;*/
/*	color: var(--text-main)!important;*/
/*}*/


/* CTA-section end */


/* Why choose section */
.why-choose-section .image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transform: rotateY(180deg);
}

.why-choose-section.astro .theme-yellow-btn {
    margin: 6px 0 20px;
    display: inline-block;
}

/* Why choose section end */


/* gallery section */
.gallery-container .gallery-slider-1,
.gallery-container .gallery-slider-2 {
    margin-top: 20px;
    padding: 0 15px;
}

.gallery-container .gallery-slider-1 .swiper-slide img,
.gallery-container .gallery-slider-2 .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* gallery section end */

/* newsletter section */
.newsletter-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.newsletter-section::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-section .container * {
    color: #fff;
}

/* newsletter section end */



/* table-reserv-section */
.table-reserv-section .image-container img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transform: rotateY(180deg);
}

.table-reserv-section .image-container {
    position: relative;
}

.table-reserv-section .table-reserv-container {
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: #c79a55 0px 3px 8px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60%;
    background-color: var(--theme-orange);
    width: 95%;
}

.table-reserv-section .table-reserv-container h4 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.table-reserv-section .table-reserv-container p {
    color: #fff;
    border-bottom: 1px dashed #fff;
    padding-bottom: 10px;
    width: 70%;
    margin: 0 auto 16px;
}

/* table-reserv-section end */



/* national park section */
section.national-park-menu-page {
    padding: 90px 0;
}

.national-park-slider {
    margin: 30px 0 40px;
}

.national-park-card {
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    padding: 20px;
    height: 100%;
}

.national-park-card .np-card-body h3 {
    font-size: 22px;
}

.national-park-card a.menu-image-box {
    position: relative;
    display: block;
}

.national-park-card a.menu-image-box i {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--theme-yellow);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-white);
    font-size: 20px;
    z-index: 1;
    transition: all 0.3s ease;
    border: 5px solid var(--theme-white);
}

.national-park-card a.menu-image-box i:hover {
    color: var(--theme-white);
    border: 7px solid var(--theme-white);
}

.national-park-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.national-park-card .np-card-body {
    margin-top: 20px;
    text-align: center;
}

.national-park-card .np-card-body h3 a {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 800;
}

.national-park-card .np-card-body h3 a {
    color: var(--text-main);
}

.national-park-card .np-card-body h3 a:hover {
    color: var(--theme-yellow);
}

.national-park-card .np-card-body p:last-child {
    margin-bottom: 0;
}

.national-park-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-yellow);
}

.national-park-slider .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

/* national park section end */


/* CTA form section */
.cta-form-section .row .col-lg-6.border-right {
    border-right: 2px solid var(--theme-yellow);
}

.cta-form-section .form-container {
    width: 80%;
}

.cta-form-section .cta-info-container .cta-info-btns {
    text-align: center;
}

.cta-form-section .cta-info-container .cta-info-btns img {
    height: 400px;
}



.cta-form-section .cta-info-container .cta-info-btns .page-menu-btn {
    padding: 14px;
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    border-radius: 5px;
    font-weight: 600;
    line-height: 1.3em;
}

.cta-form-section .cta-info-container .cta-info-btns .theme-yellow-btn {
    font-weight: 600;
    border: 1px solid var(--text-main);
    padding: 14px;
    border-radius: 5px;
}

.cta-form-section .cta-info-container .cta-info-btns .page-menu-btn:hover {
    color: var(--theme-gold);
    border-color: var(--theme-gold);
}

/* CTA form section end */


/* Testimonial Section */
.testimonial-section .testimonial-slider {
    margin-top: 30px;
    position: relative;
    padding: 0 40px 40px;
}

.testimonial-section .testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-section .testimonial-slider .testimonial-card {
    width: 100%;
    padding: 30px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-section .testimonial-slider .testimonial-card .testimonial-body {
    margin-bottom: 20px;
}

.testimonial-section .testimonial-slider .testimonial-card .testi-review {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.2em * 5);
    margin-bottom: 0px;
    transition: max-height 0.3s ease;
}

.testimonial-section .testimonial-slider .testimonial-card .testi-review.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    transition: max-height 0.3s ease;
}

.testimonial-section .testimonial-slider .testimonial-card .read-more-btn {
    padding: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--theme-yellow);
    text-decoration: underline;
    background-color: transparent;
}

.testimonial-section .testimonial-slider .testimonial-card p:last-child {
    margin-bottom: 0;
}

.testimonial-section .testimonial-slider .testi-btn-next,
.testimonial-section .testimonial-slider .testi-btn-prev {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.testimonial-section .testimonial-slider .testi-btn-next {
    right: 20px;
    z-index: 1;
}

.testimonial-section .testimonial-slider .testi-btn-prev {
    left: 20px;
    z-index: 1;
}

.testimonial-section .testimonial-slider .swiper-pagination {
    position: absolute;
    bottom: 0;
}

.testimonial-section .testimonial-slider .swiper-pagination-bullet-active {
    background-color: var(--theme-yellow);
}

.testimonial-section .testimonial-footer h5 {
    margin-bottom: 5px;
}


/* Packages Section */
.package-section .title-section {
    margin-bottom: 40px;
}

.package-section .package-card-container {
    margin-bottom: 40px;
}

.package-section.package-menu-page .package-card-container {
    margin: 25px 0;
}

.package-section .package-card {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.package-section .package-card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.package-section .package-card .package-img {
    position: relative;
}

.package-section .package-card .package-img .feature-tag {
    position: absolute;
    top: 15px;
    left: 0px;
    background-color: var(--theme-green);
    color: var(--theme-white);
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.package-section .package-card .package-img .rating-tag i {
    font-size: 17px;
}

.package-section .package-card .package-img .rating-tag span {
    margin-left: 8px;
}

.package-section .package-card .package-img .rating-tag {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background-color: var(--theme-white);
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.package-section .package-card .package-body h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 800;
}

.package-section .package-card .package-body h4 a {
    color: var(--text-main);
}

.package-section .package-card .package-body h4 a:hover {
    color: var(--theme-yellow);
}

.package-section .package-card .package-facility {
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.package-section .package-card .package-facility .col-6:nth-child(1) {
    border-right: 2px solid var(--theme-green);
}

.package-section .package-card .package-facility .col-6:nth-child(2) p {
    padding-left: 10px;
}

.package-section .package-card .package-facility .facility-item {
    margin-bottom: 0;
}

.package-section .package-card .package-facility .facility-item i {
    color: var(--theme-yellow);
    font-size: 22px;
    margin-right: 6px;
}

.package-section .package-card .p-card-bottom {
    border: 1px solid #cacaca;
    padding: 10px;
    border-radius: 8px;
}

.package-section .package-card .p-card-bottom .p-card-price {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 6px;
}

.package-section .package-card .p-card-bottom .p-card-price p {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2em;
    width: 100%;
}


.package-section .package-card .p-card-bottom .p-card-price p:nth-child(1) {
    border-right: 1px solid #cacaca;
}

.package-section .package-card .p-card-bottom .p-card-price .price-request {
    padding: 19px 15px 24px;
    border-bottom: 1px solid #cacaca;
    border-right-width: 0 !important;
    margin-bottom: 12px;
    font-size: 18px;
}

.package-section .package-card .p-card-bottom .p-card-price p span {
    font-size: 16px;
    font-weight: 400;
}

.package-section .package-card .p-card-bottom .p-card-price-note {
    position: relative;
    margin-bottom: 8px;
}

.package-section .package-card .p-card-bottom .p-card-price-note span {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px;
    position: relative;
    background-color: var(--theme-white);
    padding: 0 10px;
    z-index: 1;
}

.package-section .package-card .p-card-bottom .p-card-price-note::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #cacaca;
}

.package-section .package-card .p-card-bottom .btn-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.package-section.bg-green .text-center .theme-yellow-btn:hover {
    background-color: #fff;
    color: var(--text-main) !important;
}


/* Blog Section */
.blog-section .title-section {
    margin-bottom: 40px;
}

.blog-section .blog-card,
.blog-section .blog-side-item {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 2px;
    overflow: hidden;
    position: relative;
}

.blog-section .blog-side-item {
    margin-bottom: 20px;
}

.blog-section .blog-card .blog-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.blog-section .blog-side-item .blog-img img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.blog-section .blog-card-body {
    padding-top: 20px;
}

.blog-section .blog-card-body .blog-date,
.blog-section .blog-side-item .blog-date {
    font-size: 16px;
    margin-bottom: 10px;
    display: none;
}

.blog-section .blog-card-body .blog-date i,
.blog-section .blog-side-item .blog-date i {
    margin-right: 10px;
}

.blog-section .blog-card .blog-card-body h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-section .blog-side-item .blog-side-body h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-section .blog-card .blog-card-body .blog-content,
.blog-section .blog-side-item .blog-side-body .blog-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    max-height: calc(1.2em * 5);
    margin-bottom: 10px;
    font-size: 16px;
}

.blog-section .blog-card .blog-card-body .read-more-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-yellow);
}

.blog-section .blog-card .blog-card-body .read-more-btn:hover {
    color: var(--theme-green);
}


/* Puja Intro Section */

.about-intro-section.puja-detail .intro-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgb(125 10 10 / 78%) 0px 1px 5px 0px;
}

.about-intro-section.puja-detail .intro-text {
    margin-bottom: 20px;
}

.about-intro-section.puja-detail .puja-meta {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.about-intro-section.puja-detail .puja-meta .puja-meta-item {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
}

.about-intro-section.puja-detail .puja-meta .puja-meta-item:first-child {
    padding: 12px;
    background-color: #f1f1f1;
    border: 1px solid #bebebe;
    border-radius: 10px;
}

.about-intro-section.puja-detail .puja-meta .puja-meta-item:first-child p {
    color: var(--text-main);
    font-weight: 600;
}


.about-intro-section.puja-detail .puja-meta .puja-meta-item p {
    margin-bottom: 0;
}


/* Puja Intro end */



/* About Us Page Specific Styles */


/* About Intro Section */
.about-intro-section .img-wrapper img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
}

.about-intro-section .intro-content {
    padding-left: 30px;
}

.about-intro-section .raps-eagle-icon {
    float: right;
    width: 50px;
    margin-bottom: 20px;
}

/* Team Section */
.about-team-section {
    background-color: var(--bg-light-yellow-2);
}

.about-team-section .team-card {
    background: var(--theme-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-bottom: 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.about-team-section .team-card:hover {
    transform: translateY(-5px);
}

.about-team-section .team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}

.about-team-section .team-card h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-main);
}

.about-team-section .team-card p {
    color: var(--theme-yellow);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* CTA Strip Section */
.cta-strip-section {
    color: var(--theme-white) !important;
}

.cta-strip-content h2 {
    color: var(--theme-white) !important;
    margin-bottom: 10px;
}

.cta-strip-content p {
    color: var(--theme-white) !important;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-strip-btn-container {
    text-align: right;
}

.cta-strip-btn {
    display: inline-block;
    background: var(--theme-white);
    color: var(--text-main) !important;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-strip-btn:hover {
    background: var(--theme-yellow);
    color: var(--theme-white) !important;
}

/* About Us Page Specific Styles */


/* Team Page Specific Styles */
.team-section .team-card {
    background-color: var(--theme-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.team-section .team-card:hover {
    transform: translateY(-5px);
}

.team-section .team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

.team-section .team-card .team-card-content {
    padding: 20px;
}

.team-section .team-card .team-card-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-main);
}

.team-section .team-card .team-card-content p.designation {
    color: var(--theme-yellow);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.team-section .team-card .team-card-content p.description {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 1px;
}


/* FAQ page */
.faq-container .faq-accordion {
    width: 70%;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
}

.faq-accordion .accordion-button {
    color: var(--text-main);
    font-weight: 700;
    padding: 12px 15px;
    border-radius: 5px;
    line-height: 1.5em;
    border: 1px solid var(--theme-yellow);
}

.faq-accordion .accordion-button:hover {
    background-color: var(--theme-white);
    color: var(--text-main);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--theme-white);
    color: var(--text-main);
}

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

.faq-accordion .accordion-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    font-family: 'remixicon' !important;
    content: '\ea4e';
    font-size: 24px;
}

.faq-accordion .accordion-body {
    padding: 20px;
}

/* FAQ page end */


/* workshop page */
.cw-data-container,
.workshop-content-container {
    margin-top: 45px;
}

.learning-container {
    margin-top: 55px;
}

.learning-container .learning-item {
    display: flex;
    gap: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.learning-container .learning-item:hover {
    transform: translateY(-5px);
}

.learning-container .main-learn-info {
    padding: 20px;
}

.learning-container .learning-item .number {
    width: 60px;
    height: 60px;
    background-color: var(--theme-yellow);
    color: var(--theme-white);
    font-size: 28px;
    font-weight: 700;
    padding: 17px 17px;
    line-height: 0.8em;
    margin-bottom: 0;
    border-radius: 0 0 10px 0;
}

.equip-section p {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 30px;
}

/* workshop page end */



/* Blog Menu page */
.blog-menu-container .blog-menu-item {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.blog-menu-container .blog-menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-menu-container .blog-menu-item .blog-img-container {
    position: relative;
}

.blog-menu-container .blog-menu-item .blog-img-container .blog-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--theme-green);
    color: var(--theme-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    display: none;
}

.blog-menu-container .blog-menu-item .blog-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-menu-container .blog-menu-item .blog-info p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
}

.blog-menu-container .blog-menu-item .blog-info .theme-yellow-btn {
    font-size: 15px;
    display: inline-block;
}

/* Blog Menu page end */

/* Blog Detail page */
.blog-container .blog-detail-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

.blog-img-container {
    position: relative;
}

.blog-img-container .blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--theme-green);
    color: var(--theme-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    display: none;
}

.blog-img-container .blog-date i {
    margin-right: 5px;
}


.blog-bottom-menu {
    margin-top: 28px;
    border-top: 1px solid var(--theme-green);
    padding-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.blog-bottom-menu .blog-nav-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-bottom-menu .blog-nav-container .blog-nav-item a {
    padding: 4px 8px;
    border-radius: 3px;
    background-color: var(--theme-yellow);
    color: var(--theme-white);
    font-size: 15px;
    display: inline-block;
}

.blog-bottom-menu .blog-share {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-bottom-menu .blog-share P {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.blog-bottom-menu .blog-share ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.blog-bottom-menu .blog-share ul li {
    margin-bottom: 0;
}

.blog-bottom-menu .blog-share ul li a i {
    color: var(--theme-yellow);
    font-size: 28px;
}

.sidebar-item-title {
    font-size: 20px;
    position: relative;
    margin-bottom: 40px;
}

.sidebar-item-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 60px;
    background-color: var(--theme-yellow);
}

.recent-posts.featured-packages {
    margin-top: 40px;
}

.recent-posts {
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: var(--theme-white);
}

.recent-posts .recent-posts-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.recent-posts .recent-posts-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-posts .recent-posts-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

.recent-posts .recent-posts-item h5 {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-posts .recent-posts-item h5 a {
    color: var(--text-main);
}

.recent-posts .recent-posts-item h5 a:hover {
    color: var(--text-main);
}

.recent-posts .blog-date {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme-yellow);
    display: none;
}

.sidebar-campaign {
    margin-top: 40px;
}

.sidebar-campaign img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Blog Detail page end */

/* Information page */
.info-section .info-items {
    padding: 14px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.news-section .info-items {
    margin-bottom: 25px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

.info-section .info-items img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.news-section .info-items img {
    height: 300px;
}

.info-section .info-items h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.info-section .info-items p {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 22px;
}

.info-section .info-items .info-btn {
    text-align: right;
}

.info-section .info-items .theme-yellow-btn {
    font-size: 16px;
    display: inline-block;
    text-align: center;
}

/* Information page end */


/* contact page */
.contact-page-header {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    margin-bottom: 0;
    padding: 60px 0;
}

.contact-page-header .page-header-breadcrumb {
    left: 75%;
}

.contact-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.contact-page-header h1 {
    color: var(--theme-white) !important;
    position: relative;
    z-index: 1;
    line-height: 1.5em;
    letter-spacing: 2px;
    max-width: 400px;
}

.contact-page-header .contact-info-container {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.contact-page-header .contact-info-container p {
    font-size: 20px;
}

.contact-section .contact-info {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.contact-section .contact-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.contact-section .contact-info i {
    font-size: 28px;
    color: var(--theme-yellow);
}

.contact-section .contact-info p {
    line-height: 1.4em;
    margin-bottom: 0;
}

.contact-section .contact-info p a {
    color: var(--text-main);
}

.contact-section .contact-info p a:hover {
    color: var(--theme-yellow);
}

.contact-section .contact-info:last-child p {
    margin-bottom: 8px;
}

.form-map-section {
    margin-top: 60px;
    padding: 30px;
    overflow: hidden;
    border-radius: 5px;
}


.contact-section.puja-book .form-map-section {
    margin-top: 0px;
}



.form-map-section .fm-card {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

.form-map-section .fm-card .why-img {
    height: auto;
    width: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -40px;
    left: 0;
}

.form-map-section iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.form-map-section .why-choose-section {
    margin-top: 30px;
}

.social-media-icons {
    margin-top: 30px;
    display: flex;
}

.social-media-icons a {
    color: var(--theme-yellow);
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--theme-yellow);
}

.social-media-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

/* contact page end */

/* package details start */

/* pckage gallery */
.package-hero-section {
    padding: 30px 0 0 0;
}

.package-hero-section .hero-main-img {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.package-hero-section .hero-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.package-hero-section .hero-main-img:hover img {
    transform: scale(1.05);
}

.package-hero-section .hero-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.package-hero-section .hero-text-overlay::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -22px;
    width: 110%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: -1;
    padding: 100px;
}

.package-hero-section .hero-text-overlay h1 {
    color: #fff;
    font-size: 48px;
    margin-top: 15px;
    font-weight: 800;
}

.package-hero-section .hero-text-overlay .days-badge {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.package-hero-section .hero-side-imgs {
    height: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-hero-section .hero-side-img-top,
.package-hero-section .hero-side-img-bottom {
    height: 50%;
    position: relative;
    overflow: hidden;
}

.package-hero-section .hero-side-img-top img,
.package-hero-section .hero-side-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.package-hero-section .view-gallery-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-hero-section .view-gallery-btn:hover {
    background: var(--theme-yellow);
    color: #fff;
}

.package-detail-content h2 {
    font-size: 26px;
    border-left: 4px solid var(--theme-yellow);
    padding-left: 15px;
}

/* pckage gallery end */



/* trip header */
.trip-header-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #666;
}

.trip-header-meta .package-details-grid {
    display: flex;
    gap: 30px;
}

.trip-header-meta .pd-item {
    background-color: transparent;
    padding: 0;
    width: fit-content;
}

.trip-header-meta .pd-item i {
    font-size: 30px;
    margin-right: 10px;
}

.trip-header-meta .pd-item-content .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.trip-header-meta .pd-item-content .label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.trip-header-meta .meta-divider {
    color: #ddd;
}

.trip-header-meta strong {
    color: var(--text-main);
}

.trip-header-meta .rating span {
    color: var(--theme-yellow);
    font-weight: 700;
}

.trip-duration-badge {
    background-color: var(--theme-green);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.trip-title {
    margin-bottom: 20px;
    color: var(--text-main) !important;
}

/* overview */
.overview-section {
    margin-bottom: 30px;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}

.overview-section .overview-content {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 5);
    margin-bottom: 0px;
    transition: max-height 0.3s ease;
}

.overview-section .overview-content.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    transition: max-height 0.3s ease;
}

.overview-section .read-more-btn {
    padding: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-yellow);
    text-decoration: underline;
    background-color: transparent;
}



/* package feature */
.package-details-widget {
    background-color: var(--bg-light-yellow-2);
    border-radius: 10px;
    margin-bottom: 30px;
}

.package-details-widget h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.package-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 10px;
}

.pd-item i,
.pd-item img {
    font-size: 24px;
    color: var(--theme-yellow);
    width: 24px;
    /* Fix width for alignment */
    text-align: center;
}

.pd-item-content {
    display: flex;
    flex-direction: column;
}

.pd-item-content .value {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    line-height: 1.2;
}

.pd-item-content .label {
    font-size: 13px;
    color: #777;
    line-height: 1.2;
    margin-bottom: 4px;
}

/* package feature end */


/* --- Pricing Card --- */
.pricing-card {
    background-color: var(--theme-green);
    color: var(--theme-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: var(--theme-white) !important;
    font-size: 24px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.pricing-card .pricing-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    display: block;
}

.pricing-card .row .col-6 {
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.pricing-card .row .col-6:last-child {
    border-right: none;
}

.pricing-block {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.pricing-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-block .price-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--theme-yellow);
    letter-spacing: 0.5px;
}

.pricing-block .price-amount {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    margin-top: 10px;
}


.pricing-block .price-per-person {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 5px;
}

/* --- Tour Tabs --- */
.tour-tabs-nav-container {
    top: 0;
    z-index: 99;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.tour-tabs-nav .nav-link {
    color: var(--text-main);
    font-weight: 700;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 18px;
    background: transparent;
    border: 1px solid transparent;
    margin-right: 10px;
    transition: all 0.3s;
    letter-spacing: 1.2px;
}

.tour-tab-content {
    border-radius: 15px;
    padding: 30px;
    margin-top: 26px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.tour-tab-content h2 {
    font-size: 26px;
    color: var(--text-main);
    border-left: 5px solid var(--theme-yellow);
    padding-left: 15px;
}

.tour-tab-content .accordion-header {
    font-size: 28px;
    color: var(--text-main);
    border-left: 5px solid var(--theme-yellow);
    padding-left: 15px;
}

.accordion-header {
    margin-bottom: 0 !important;
}

.tour-tabs-nav .nav-link:hover {
    background-color: rgba(244, 153, 26, 0.1);
    color: var(--theme-yellow);
}

.tour-tabs-nav .nav-link.active {
    background-color: var(--theme-yellow);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(244, 153, 26, 0.3);
}



/* --- Tour Accordion --- */
.tour-accordion .accordion-item {
    background-color: var(--theme-white);
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tour-accordion .accordion-header {
    margin-bottom: 0;
}

.tour-accordion .accordion-button {
    background-color: var(--theme-white);
    color: var(--text-main);
    font-weight: 700;
    font-size: 18px;
    padding: 10px 18px 10px 10px;
    box-shadow: none !important;
    border-radius: 10px !important;
}

/* Open state styling */
.tour-accordion .accordion-button:not(.collapsed) {
    background-color: var(--theme-white);
    color: var(--text-main);
    box-shadow: none;
}

.tour-accordion .accordion-button::after {
    background-image: none;
    content: '\ea4e';
    font-family: 'remixicon';
    font-size: 24px;
    color: #444;
    height: auto;
    width: auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
}

.tour-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.tour-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--text-main);
    background-color: var(--theme-white);
    border-top: none;
}

.inquiry-form-section .wpcf7-submit {
    width: fit-content;
}

/* Remove the icon I previously added */
.tour-accordion .accordion-button .day-label {
    margin-right: 15px;
    color: var(--text-main);
    font-weight: 800;
}

.highlights-box {
    background-color: var(--bg-light-yellow-2);
    border-radius: 10px;
    margin-top: 40px;
}

.highlights-box h4 {
    margin-bottom: 20px;
    font-size: 20px;
}


/* Inclusions/Exclusions */
.list-inclusions li,
.list-exclusions li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.list-inclusions li i,
.list-exclusions li i {
    font-size: 20px;
    margin-top: 2px;
}

.text-green {
    color: var(--theme-green) !important;
}

.text-danger {
    color: #d9534f !important;
}


/* terms section */
.terms-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.booking-conditions-container {
    margin-top: 40px;
}

/* sidebar */
.sidebar-widget {
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin-top: 30px;
}

.sidebar-widget h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 22px;
}

.sidebar-widget h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    background-color: var(--theme-yellow);
}

/* package details end */



/* Footer Section */
footer {
    position: relative;
    background-image: url('https://okracafenorwest.com.au/wp-content/uploads/2026/06/hero-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.8;
    z-index: 2;
}

footer .container {
    position: relative;
    z-index: 3;
}

footer p,
footer a {
    color: var(--theme-white) !important;
}

footer a:hover {
    color: var(--theme-yellow) !important;
}

footer {
    padding-top: 70px;
    padding-bottom: 20px;
    color: var(--theme-white) !important;
}

footer .container-fluid {
    padding: 0 80px;
}

footer .footer-logo img {
    height: 70px;
    object-fit: contain;
}

footer .footer-logo-desc {
    margin-top: 30px;
}

footer .footer-logo-desc h4 {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4em;
}

footer .contact-data-container .contact-data-item {
    margin-bottom: 16px;
    font-weight: 600;
}

footer .contact-data-container .contact-data-item i {
    margin-right: 6px;
    font-size: 22px;
    line-height: 1.3em;
}

footer .footer-social {
    margin-top: 20px;
}

footer .footer-social a {
    color: var(--theme-yellow);
    font-size: 28px;
    margin-right: 15px;
    transition: 0.3s;
}

footer .footer-social a:hover {
    color: var(--theme-white);
}

footer .footer-links-container {
    margin-bottom: 30px;
}

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

footer .footer-links li,
footer .footer-contact li {
    margin-bottom: 12px;
}

footer .footer-links li a,
footer .footer-contact li a {
    color: #fff;
    transition: 0.3s;
    font-size: 18px;
}

footer .footer-links li a:hover,
footer .footer-contact li a:hover {
    color: var(--theme-yellow);
}

footer .footer-contact li i {
    margin-right: 10px;
}

footer .footer-img-container-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

footer .footer-img-container-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    padding: 8px;
}

footer .footer-notice {
    width: 80%;
    margin: auto;
    margin-top: 70px;
}

footer .footer-bottom .container {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 2px solid var(--theme-yellow);
}

footer .footer-bottom a:hover {
    color: var(--theme-yellow);
}

.footer-btn-container {
    position: relative;
}

.footer-btn-container button i,
.footer-btn-container a i {
    font-size: 20px;
    margin-right: 10px;
}

.footer-btn-container .back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}

.footer-btn-container .back-top-btn i {
    margin-right: 0;
}

.footer-btn-container .tour-dates-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}

.footer-btn-container .tour-dates-btn:hover {
    color: var(--theme-white);
}


/* ========== Vertical Testimonial Slider (Table Reservation Section) ========== */
.vertical-testi-slider {
    height: 540px;
    overflow: hidden;
    position: relative;
    padding-right: 30px;
}

.vertical-testi-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* New testimonial card */
.testi-card-new {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 24px 26px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 3px solid var(--bg-alt);
}

/* Large orange closing quote mark top-right */
.testi-card-new .testi-quote-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 70px;
    line-height: 1;
    color: var(--theme-orange);
    font-family: Georgia, serif;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

/* Star rating row */
.testi-card-new .testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.testi-card-new .testi-stars i {
    font-size: 18px;
}

/* Review text */
.testi-card-new .testi-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 6px;
    flex: 1;
}

/* Author row: name+role left, photo right */
.testi-card-new .testi-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid #f0e9d8;
    padding-top: 12px;
    margin-top: auto;
}

.testi-card-new .testi-author-info {
    flex: 1;
}

.testi-card-new .testi-author-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.testi-card-new .testi-author-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--theme-orange);
    margin-bottom: 0;
    text-transform: uppercase;
}

/* Author photo */
.testi-card-new .testi-author-photo {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.testi-card-new .testi-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vertical nav buttons */
.vertical-testi-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.vtesti-btn-prev,
.vtesti-btn-next {
    width: 36px;
    height: 36px;
    background-color: var(--theme-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: #fff;
    font-size: 22px;
}

.vtesti-btn-prev:hover,
.vtesti-btn-next:hover {
    background-color: var(--theme-yellow);
    transform: scale(1.1);
}

/* Align the col-lg-7 vertically centred with the image */
.table-reserv-section .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

/* ========== Vertical Testimonial Slider End ========== */


/* ========== Gallery Page Section ========== */
.gallery-page-section {
    padding: 70px 0 90px;
}

.gallery-page-title {
    margin-bottom: 40px;
}

.gallery-page-title h4 {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-page-title h2 {
    margin-bottom: 12px;
}

.gallery-page-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Buttons */
.gallery-filter-btns,
.menu-filter-btns {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.gallery-filter-btn,
.menu-filter-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-inclusive);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--theme-orange);
    background-color: transparent;
    color: var(--theme-orange);
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
}

.gallery-filter-btn:hover,
.menu-filter-btn:hover {
    background-color: var(--theme-orange);
    color: var(--theme-white);
    box-shadow: 0 4px 18px rgba(208, 106, 33, 0.3);
    transform: translateY(-2px);
}

.gallery-filter-btn.active,
.menu-filter-btn.active {
    background-color: var(--theme-orange);
    color: var(--theme-white);
    box-shadow: 0 4px 18px rgba(208, 106, 33, 0.35);
}

/* Gallery Grid — Masonry-style */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
}

.gallery-page-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
}

.gallery-page-item.tall {
    grid-row: span 2;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-page-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

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

/* Overlay */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(208, 106, 33, 0.0) 0%,
            rgba(208, 106, 33, 0.15) 50%,
            rgba(46, 42, 37, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    gap: 8px;
}

.gallery-page-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 38px;
    color: var(--theme-white);
    background-color: rgba(208, 106, 33, 0.85);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
    transition: transform 0.35s ease;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.gallery-page-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

.gallery-item-overlay span {
    color: var(--theme-white);
    font-family: var(--font-inclusive);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.gallery-page-item:hover .gallery-item-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 14px;
    }

    .gallery-page-item.tall {
        grid-row: span 1;
        grid-column: span 1;
    }

    .gallery-page-section {
        padding: 50px 0 60px;
    }

    .gallery-filter-btn,
    .menu-filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* ========== Gallery Page Section End ========== */