:root {
    --main-font-family: 'IBM Plex Sans', sans-serif;
    --card-radius: 5px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
.nav-link,
* {
    font-family: var(--main-font-family) !important;
}

/* Global background */
body {
    background-color: #ffffff !important;
}

.destination-card {
    overflow: hidden;
    border-radius: var(--card-radius);
    position: relative;
}

img.rounded-circle.object-fit-cover.me-3.shadow {
    border: 3px solid #fff;
}

.news-blog-posts {
    background: #cd0613;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.blogs-blog-posts {
    background: transparent;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.blogs-blog-posts img {
    object-fit: cover !important;
}

.blogs-blog-posts a {
    color: #fff !important;
}

.destination-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Apply rounded corners to common card images and iframes */
.biz-card-img,
.post--item img,
.post--item iframe,
.banner .box-image,
.team-photo,
.dreamit-team-thumb img,
.biz-card-img {
    border-radius: var(--card-radius);
}

/* Team section styles to match provided design */
.bg-teams {
    background-color: #265b87;
    /* slightly darker blue for contrast */
}

.dreamit-single-team-member,
.team-carousel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px !important;
    /* Equal padding (px and py) everywhere */
}

.dreamit-team-thumb {
    margin-bottom: 16px !important;
    /* Slight gap */
}

.team-photo {
    width: 156px;
    height: 156px;
    /* Square smaller style fitting the image reference */
    object-fit: cover;
    border-radius: 0;
    border: none;
    display: block;
    margin: 0 auto;
}

.dreamit-team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.dreamit-team-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Consistent spacing */
    width: 100%;
}

.dreamit-team-title a {
    text-decoration: none;
}

.team-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff !important;
    margin: 0;
}

.team-designation {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.team-contact {
    color: #ffffff !important;
    font-weight: 500;
    margin-top: 0 !important;
}

.team-contact a,
.team-contact i {
    color: #ffffff !important;
}

#teamCarousel .carousel-inner {
    min-height: 320px;
}

#teamCarousel .carousel-item {
    min-height: 320px;
}

#teamCarousel .team-carousel-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#teamCarousel .team-carousel-content {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#teamCarousel .team-contact {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
}

#teamCarousel .team-contact.is-empty {
    visibility: hidden;
}

/* Section header: red bar + black title */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.section-header .bar {
    width: 6px;
    height: 20px;
    background: #dc143c;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-header .title {
    color: #111;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Ensure major sections have white background and dark headings */
.services-section-abc,
.blog-section-abc,
.section-background,
.meet-our-team,
.kaha-page,
.post--items,
.post--item,
.box-image,
.calendar,
.container {
    background-color: transparent !important;
}

.services-section-abc h2,
.blog-section-abc h2,
.section-background h2,
.meet-our-team h2,
.post--item p,
.post--item h2,
.box-image a,
.box-image h2 {
    color: #111 !important;
}

/* Override explicit dark inline backgrounds where used */
.services-section-abc[style],
.blog-section-abc[style] {
    background-color: #ffffff !important;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.logo-navbar-icon {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* smooth animation */
}

i.bi.bi-search {
    color: #111;
}

.logo-navbar-icon.show {
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
}

.bg-teams {
    background-color: #065494;
}



/* Search button */
.mobile-search-btn {
    background: linear-gradient(135deg, #065494, #0a74da);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-search-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0a74da, #065494);
}

/* Input field hidden initially */
.mobile-search-input {
    width: 0;
    opacity: 1;
    padding: 0;
    border: none;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: #f9f9f9;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Expanded state */
.mobile-search-wrapper.active .mobile-search-input {
    width: 220px;
    opacity: 1;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ddd;
}


.banner-img {
    width: 100%;
    display: block;
    height: 650px;
    object-fit: cover;
}

.carousel-caption.container.slider-test {
    position: absolute;
    left: auto;
    right: 40px;
    bottom: 20px;
    top: auto;
    transform: none;
    text-align: left;
    /* min-width: 30%; */
    width: 30%;
    /* min-width: 30%; */
    background-color: #06549494;
    padding: 15px;
    border-radius: 6px;
}

.middle-top h4 {
    font-size: 1.25rem;
    color: #dc143c;
    font-family: var(--main-font-family) !important;
}

.middle-top h2 {
    font-size: 32px;
    color: #dc143c;
    font-family: var(--main-font-family) !important;
}

.middle-top h5 {
    font-size: 1.1rem;
    color: #dc143c;
    font-family: var(--main-font-family) !important;
}

.nav-link {
    padding: 10px 20px !important;
    color: #000000 !important;
}



.nav-link.disabled {
    pointer-events: none;
    cursor: default;
    color: #000000 !important;
    opacity: 1;
}

li.nav-item {
    padding: 0px 0px;
}



.hover-box {
    position: relative;
    background: linear-gradient(to right, #043964, #000000);
    background-size: 200% 100%;
    background-position: left;
    transition: background-position 0.5s ease;
}

.bg-theme {
    background: transparent !important;
    color: #111 !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.bg-theme::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #dc143c;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Strong overrides to ensure titles are visible/black even when Bootstrap's `text-white` is used */
.bg-theme.text-white,
.bg-theme.text-white *,
.bg-theme.text-white::before,
.bg-theme.text-white::after {
    color: #065494 !important;
}

/* Also ensure any heading inside section-header is black */
.section-header .title,
.section-header .title * {
    color: #065494 !important;
}

.blog-card .blog1 {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e8eaf1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card>a,
.blog-card .blog1,
.blog-card .blog2 {
    display: block;
}

.blog-card .blog2 {
    height: 220px;
    line-height: 0;
    overflow: hidden;
}

.blog-card .blog2 img {
    width: 100%;
    height: 220px;
    object-fit: cover !important;
    display: block;
}

.blog-card-body,
.blog-card-body-a {
    background: #f5f6fa !important;
    color: #111 !important;
    padding: 22px 10px !important;
    border-radius: 0 0 2px 2px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
}

.blog-card-date {
    font-size: 0.8rem;
    color: #6d6969;
    line-height: 1.2;
    font-weight: 500;
}

.blog-card-title-link,
.blog-card-body a,
.blog-card-body-a a {
    color: #000 !important;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
}

.blog-read-more-btn {
    margin-top: auto;
    align-self: flex-start;
    background: transparent;
    color: #065494;
    font-size: 1rem;
    font-weight: 500;
    ;
    padding: 0;
    border-radius: 0;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.blog-card:hover .blog-read-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    background-color: rgb(6 84 148);
}

.fotter-icon-main {
    background-color: #065494;
}



.read-more-d {
    color: #065494 !important;
    background: #d5e9f9 !important;
    transition: background 0.4s;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}

.fc .fc-col-header-cell-cushion {
    text-decoration: none;
    color: #ffffff;
}

.fc .fc-daygrid-day-number {
    text-decoration: none;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid #065494;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #065494 !important;
    border-style: solid;
    border-width: 0;
}

.fc-theme-standard .fc-scrollgrid {
    border: 1px solid #065494;
}

.fc-theme-standard th {
    border: 1px solid #065494;
    background: #065494;
    color: white;
}

.dropdown-item {
    height: 38px !important;
}

/* ========================================= */
/* GLOBAL MOBILE RESPONSIVE FIXES            */
/* ========================================= */
@media (max-width: 767.98px) {

    /* 1. All banners height to 400px (excluding Team Carousel) */
    .banner-img,
    #carouselExampleCaptions .carousel-item img,
    #carouselExampleCaptions .carousel-inner,
    .slider-img,
    .page-header-img,
    .page-banner img,
    .cal-hero-banner {
        height: 400px !important;
        object-fit: cover !important;
    }

    /* 2. Photo gallery responsive layout (1 column) */
    .photo-gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }

    .photo-gallery-grid .gallery-card:first-child {
        grid-row: auto !important;
    }

    .photo-gallery-grid .gallery-card {
        height: 300px !important;
        /* Fixed height for 1 column */
    }

    /* 3. Header text resizing and logos for 3-col layout */
    .mob-logo-img {
        height: 50px !important;
    }

    .flag-img {
        width: 40px !important;
    }

    .mob-header-text {
        padding: 0 !important;
    }

    .mob-header-text .h4-mob {
        font-size: 13px !important;
        margin-bottom: 0px !important;
    }

    .mob-header-text .h2-mob {
        font-size: 16px !important;
        margin-bottom: 0px !important;
        line-height: 1.2;
    }

    .mob-header-text .h5-mob {
        font-size: 11px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 4. Filter Bars horizontal scroll fix (Accommodations, Destinations, Trails) */
    .kaha-filter-inner,
    .trails-filter-inner {
        justify-content: flex-start !important;
        padding-bottom: 5px;
        /* room for potential scrollbar */
    }

    .kaha-filter-btn,
    .trails-filter-btn {
        font-size: 1rem !important;
        /* shrink text slightly to fit more on screen */
        padding: 12px 8px !important;
    }

    /* 5. Top Bar Shrink */
    .top-contact-text {
        font-size: 0.8rem !important;
    }

    .top-contact-btn {
        font-size: 0.8rem !important;
    }

    .top-contact-icon {
        font-size: 1rem !important;
    }
}

.calendar-section a {
    color: #4a5568 !important;
    text-decoration: none !important;
}

/* Modern Dropdown Styles */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    min-width: 280px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    background: #ffffff;
    margin-top: 10px;
}

/* Show dropdown with smooth animation */
.navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modern Dropdown Items */
.dropdown-item.active,
.dropdown-item:focus {
    background-color: transparent !important;
    color: #000000 !important;
}

.dropdown-item {
    padding: 12px 25px;
    color: #000000 !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

/* Hover Effect for Dropdown Items */
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent !important;
    color: #d10000 !important;
    /* Red color on hover */
    border-left: 3px solid #d10000;
    padding-left: 30px;
    transform: translateX(5px);
}

/* Dropdown Arrow Effect */
.nav-link.dropdown-toggle::after {
    content: "›";
    border: none;
    transform: rotate(90deg);

    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-toggle::after {
    vertical-align: 0 !important;
}

/* Rotate arrow on hover */
.nav-item:hover .nav-link.dropdown-toggle::after {
    transform: rotate(0deg);
    color: #ff6b6b;

}

.nav-item .nav-link {
    font-size: 18px;

}

/* Navbar Links Hover Effect */
.navbar-nav .nav-link {
    position: relative;
    padding: 10px 15px;
    color: #000000 !important;
    transition: all 0.3s ease;
    font-family: var(--main-font-family) !important;
}

/* Base state for the new styled underline */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #dc143c;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: width 0.3s ease;
}

/* Hover state styling */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover>.nav-link,
.navbar-nav .nav-item:focus>.nav-link {
    background-color: #dfdede !important;
    color: #000000 !important;
}

/* Active underline state */
.navbar-nav .nav-link.active::before {
    width: 100%;
    display: block;
}

/* Dropdown divider */
.dropdown-divider {
    margin: 10px 25px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Mega menu effect for deep dropdowns */
.dropdown-menu .dropdown-item.has-children {
    position: relative;
}

.dropdown-menu .dropdown-item.has-children::after {
    content: "›";
    position: absolute;
    right: 15px;
    color: #999;
    transition: transform 0.3s ease;
}

.dropdown-menu .dropdown-item.has-children:hover::after {
    transform: translateX(3px);
    color: #d10000;
}

/* Search Styles */
.search-results a,
.mobile-search-results a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.search-results a:last-child,
.mobile-search-results a:last-child {
    border-bottom: none;
}

.search-results a:hover,
.mobile-search-results a:hover {
    background-color: #f8f9fa;
    color: #d10000;
    padding-left: 20px;
}

.search-container {
    transition: all 0.3s ease;
}

/* Custom scrollbar for dropdowns */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #d10000;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

/* Gradient effect for dropdown */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.04);
}

/* ===== Mobile Offcanvas Menu — white theme ===== */
/* Bootstrap 5 uses a CSS variable for the background */
.offcanvas {
    --bs-offcanvas-bg: #ffffff;
}

.mob-menu {
    padding: 0;
    margin: 0;
}

.mob-menu-item {
    border-bottom: none;
}

.mob-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 18px 25px !important;
    /* 25px exact left padding */
    color: #111111 !important;
    text-decoration: none !important;
    font-size: 15px;
    position: relative;
    transition: color 0.2s ease;
    margin-bottom: 2px;
}

/* Red underline on hover — text-width only, matching desktop nav */
.mob-menu-link span {
    position: relative;
    display: inline-block;
}

.mob-menu-link span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #dc143c;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: width 0.3s ease;
}

.mob-menu-link:hover span::after {
    width: 100%;
}

.mob-menu-link:hover,
.mob-menu-link.mob-active {
    color: #000000 !important;
}

.mob-chevron {
    font-size: 12px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.mob-menu-link[aria-expanded="true"] .mob-chevron,
.mob-menu-link:not([aria-expanded="false"]):not([aria-expanded]) .mob-chevron {
    transform: rotate(180deg);
}

/* Sub-menu items — slightly indented */
.mob-submenu {
    background: #f9f9f9;
}

.mob-sub-link {
    padding-left: 40px !important;
    font-size: 14px;
    color: #333333 !important;
}

.mob-submenu-l2 .mob-sub-link {
    padding-left: 55px !important;
}


.calendar-section {
    background: #edf2fa;
    padding: 20px;
}

/* Shared Kaha page styles */
.kaha-hero-banner {
    position: relative;
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #065494;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.kaha-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.kaha-hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    text-transform: uppercase;
}

.kaha-filter-container {
    display: flex;
    justify-content: center;
    padding: 20px 0 30px;
    background: #f5f6fa;
}

.kaha-filter-bar {
    background: #065494;
    border-radius: 3px;
    padding: 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.kaha-filter-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
}

.kaha-filter-inner::-webkit-scrollbar {
    display: none;
}

.kaha-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.kaha-filter-btn:hover {
    background-color: #39638e;
}

.kaha-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: #ff0000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kaha-filter-btn.active::after {
    transform: scaleX(1);
}

.kaha-filter-btn.active {
    color: #fff;
}

.kaha-page {
    background: #f5f6fa;
    min-height: 60vh;
    padding: 10px 0 60px;
}

/* Custom Breadcrumb Styling */
.c-breadcrumb-container {
    padding: 40px 0 20px 0;
}

.c-breadcrumb {
    margin-bottom: 0px !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 0.95rem;
    font-weight: 500;
}

.c-breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 14px;
}

.c-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '>' !important;
    color: #7e7e7e !important;
    padding-right: 14px !important;
}

.c-breadcrumb a,
.c-breadcrumb li {
    color: #666666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.c-breadcrumb a:hover {
    color: #dc143c !important;
}

.c-breadcrumb .breadcrumb-item.active {
    color: #666666 !important;
}

@media (max-width: 768px) {
    .c-breadcrumb-container {
        padding: 15px 0;
    }

    .c-breadcrumb {
        font-size: 0.75rem;
    }

    .c-breadcrumb .breadcrumb-item+.breadcrumb-item {
        padding-left: 6px;
    }

    .c-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 6px !important;
    }
}

/* ── View Toggle Layout (Grid/List) ── */
.c-breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.biz-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border: none;
    transition: box-shadow .25s, transform .25s;
    text-decoration: none;
    color: inherit;
}

.biz-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, .12);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.biz-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #e0e0e0;
    transition: transform .25s;
}

.biz-card:hover .biz-card-img {
    transform: scale(1.05);
}

.biz-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 2rem;
}

.biz-card-img-wrap {
    overflow: hidden;
    flex-shrink: 0;
}

.biz-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.biz-card-name {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    overflow: hidden;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.biz-card-tagline {
    margin: 0 0 10px;
    font-size: .8125rem;
    color: #666;
    line-height: 1.3;
    overflow: hidden;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.biz-card-meta {
    display: flex;
    gap: 12px;
    font-size: .75rem;
    color: #888;
    margin-bottom: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.biz-card-address {
    margin: 0 0 14px;
    font-size: .75rem;
    color: #999;
    line-height: 1.3;
    overflow: hidden;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.biz-card-btn {
    margin-top: auto;
    padding: 10px 16px;
    background: #065494;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    text-align: center;
    display: block;
    width: 100%;
}

.biz-card-btn:hover {
    background: #065494;
    color: #fff;
    text-decoration: none;
}

.kaha-state-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.kaha-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top-color: #065494;
    border-radius: 50%;
    animation: kspin .7s linear infinite;
}

@keyframes kspin {
    to {
        transform: rotate(360deg);
    }
}

.kaha-pagination-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.kaha-pages {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kaha-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    background: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

.kaha-page-btn.active {
    background-color: #065494;
    border-color: #065494;
    color: #fff;
}

.kaha-page-btn:not(.active):hover {
    border-color: #065494;
    color: #065494;
}

.kaha-page-dots {
    color: #999;
    padding: 0 4px;
}

.kaha-page-info {
    color: #666;
    font-size: 14px;
}


/* styles.css */
.background-about-us {
    background: #0a0c26;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.section-background {
    background: transparent !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.section-background::before {
    display: none !important;
    content: none !important;
}

.section-title {
    color: #fff;
    font-weight: bold;
}

.card-header-a {
    margin-left: 20px;
    margin-top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: rgb(233, 9, 9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.card-header-a:hover {
    background-color: white;
}

.card-header-a i {
    font-size: 30px;
}

.card-header-a:hover i {
    color: red;
}

.custom-card {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 220px;
}

.card {
    border: 2px solid white;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card-body {
    text-align: center;
    padding: 30px 20px;
}

.icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    /* Makes sure icon is white */
}

.card-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 20px;
}

.card-text {
    font-size: 0.7rem;
}

@media (max-width: 767.98px) {
    .custom-card {
        margin-bottom: 20px;
    }
}

/* styles.css */

/* body {
                background-color: #000;
                color: #fff;
                font-family: Arial, sans-serif;
            } */

.call-to-action-section {
    background-color: #1f1f1f;
    /* Dark purple background */
    color: #fff;
}

.call-to-action-section h2 {
    font-weight: bold;
}

.call-to-action-section p {
    font-size: 1.1rem;
}

.call-to-action-section .btn {
    background-color: #e53935;
    border: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.call-to-action-section .btn:hover {
    background-color: #d32f2f;
}

.call-to-action-section .btn i {
    margin-right: 5px;
}

.card-title-a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.card-text-a {
    color: #fff;
}

.service-card a {
    text-decoration: none;
}

.Why-Choose {
    height: 250px;
    background-color: #000000;
    border: 2px solid white;
}

.icon-abc {
    margin-left: 20px;
    margin-top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: rgb(238, 234, 234);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.icon-abc:hover {
    background-color: white;
}

.icon-abc i {
    color: red;
    font-size: 30px;
}

.Why-Choose {
    color: white;
}

.card-custom {
    background-color: #1b0f60;
    /* border: 1px solid rgba(24, 22, 22, 0.2); */
    color: white;
    margin-bottom: 20px;
    height: 100%;
}

.card-custom .card-header {
    background-color: transparent;
    border-bottom: none;
    text-align: center;
}

.card-custom .card-body {
    text-align: center;
}

/* .background-about-us{ */
/* background-image: url("{{ asset('assets/site/image/1L8A9498.JPG') }}"); */
/* background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    position: relative;
                    z-index: 1; */
/* } */
.background-about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Cover only half of the image */
    height: 100%;
    background-image: linear-gradient(to right, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), transparent);
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.0) !important;
}

.rental-box:hover h4 {
    color: red;
}

.blog-section-abc {
    background-color: transparent !important;
}

.meet-our-team {
    background-color: #f8f9fa !important;
    padding: 80px 0;
}



.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    padding: 20px;
    transition: all 0.3s ease;
}

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

.team-img-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .team-img {
    transform: scale(1.05);
}

.member-name {
    font-weight: 600;
    /* color: #2c3e50; */
    margin-bottom: 5px;
}

.member-position {
    color: #e74c3c;
    font-weight: 500;
    margin: 0;
}

.blog1 .blog2 img {
    object-fit: cover !important;
}

/* Box image text color override (was using text-white) */
.box-image a.text-white,
.box-image .text-white {
    color: #111 !important;
}

.box-image {
    background-color: transparent !important;
}





/* Responsive adjustments */
@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease-out;
    }

    .search-container {
        transition: all 0.3s ease;
        display: block;
        z-index: 1000;
        width: 800px;
        background: rgb(31 31 31);
        padding: 20px 20px;
        border-radius: 10px;
        display: none;
        animation: slideDown 0.3s ease-out;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global Light Gray Background applied dynamically */
body.bg-kaha-gray {
    background-color: #f5f6fa !important;
}

body.bg-kaha-gray #main-content {
    color: #111 !important;
}

body.bg-kaha-gray #main-content .text-white {
    color: #111 !important;
}

body.bg-kaha-gray #main-content hr {
    border-color: #ccc !important;
}

body.bg-kaha-gray section[style*="background-color"] {
    background-color: transparent !important;
}

body.bg-kaha-gray section.blog-section-hhh,
body.bg-kaha-gray section.blog-section-abc {
    background: transparent !important;
}


/* ================================
   Trails Page Specific Styles
   ================================ */

/* Trails filter - white background (separate from shared kaha-filter) */
.trails-filter-container {
    display: flex;
    justify-content: center;
    padding: 0px 0 40px 0;
    background: #ffffff;
}

.trails-filter-bar {
    background: #065494;
    border-radius: 3px;
    padding: 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.trails-filter-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
}

.trails-filter-inner::-webkit-scrollbar {
    display: none;
}

.trails-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
}

.trails-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: #ff0000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trails-filter-btn:hover::after,
.trails-filter-btn.active::after {
    transform: scaleX(1);
}

.trail-left-column,
.trail-right-column {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    top: 0;
}

.trail-cover-section {
    flex-direction: column;
}

.trail-cover-2 .trail-cover-section>div,
.trail-cover-3 .trail-cover-section>div {
    flex: 0 0 100%;
}

.itinerary-stop-images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s;
}

.itinerary-stop-images a:hover img {
    transform: scale(1.05);
}

.itinerary-stop-images.img-1 a {
    width: 100%;
}

.itinerary-stop-images.img-2 a:first-child {
    flex: 0 0 calc(60% - 5px);
}

.itinerary-stop-images.img-2 a:last-child {
    flex: 0 0 calc(40% - 5px);
}

.itinerary-stop-images.img-3 a {
    flex: 0 0 calc(33.333% - 7px);
}

/* Responsive */
@media (max-width: 991px) {
    .trail-content-wrapper {
        flex-direction: column;
        color: #000;
    }

    .itinerary-stop-route i {
        color: #666;
    }

    .itinerary-stop-meta {
        display: flex;
        gap: 16px;
        font-size: 13px;
        color: #666;
        margin-bottom: 16px;
    }

    .itinerary-stop-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .itinerary-stop-images {
        display: flex;
        gap: 10px;
        margin-top: 16px;
    }

    .itinerary-stop-images a {
        display: block;
        overflow: hidden;
    }

    .itinerary-stop-images img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .itinerary-day-body {
        padding: 24px;
        display: none;
        background: #fafafa;
    }

    .itinerary-day.expanded .itinerary-day-body {
        display: block;
    }

    .itinerary-stop {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e0e0e0;
    }

    .itinerary-stop:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .itinerary-stop-route {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .itinerary-day-circle {
        width: 32px;
        height: 32px;
        background: #000;
        color: #fff;
        border-radius: 50%;
        font-weight: 700;
        font-size: 14px;
        margin-right: 12px;
    }

    .itinerary-day-title {
        font-weight: 600;
        font-size: 16px;
        color: #000;
    }

    .itinerary-day-subtitle {
        font-size: 13px;
        color: #666;
        margin-left: 8px;
    }

    .itinerary-day-chevron {
        transition: transform 0.2s;
        font-size: 14px;
        color: #666;
    }

    .itinerary-day.collapsed .itinerary-day-chevron {
        transform: rotate(-90deg);
    }

    .itin {
        margin-top: 40px;
    }

    .itinerary-day {
        border: 1px solid #e0e0e0;
        margin-bottom: 16px;
        border-radius: 0;
    }

    .itinerary-day-header {
        background: #f8f9fa;
        padding: 18px 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s;
    }

    .itinerary-day-header:hover {
        background: #e9ecef;
    }

    .itinerary-day-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        ;
        margin-bottom: 16px;
    }

    .permit-item {
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .permit-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .permit-item:first-child {
        padding-top: 0;
    }

    .permit-name {
        font-weight: 600;
        color: #000;
        margin-bottom: 4px;
    }

    .permit-cost {
        color: #065494;
        font-weight: 600;
        font-size: 15px;
    }

    .permit-notes {
        font-size: 13px;
        color: #666;
        margin-top: 4px;
    }

    /* Itinerary section */
    .itinerary-section {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 14px;
    }

    .trail-info-item i {
        font-size: 18px;
        color: #666;
        width: 20px;
        flex-shrink: 0;
    }

    .trail-info-label {
        font-weight: 600;
        color: #000;
        min-width: 100px;
    }

    .trail-info-value {
        color: #333;
    }

    /* Permits box styling */
    .permits-box {
        background: #f5f5f5;
        padding: 20px;
        border-radius: 0;
        margin-top: 20px;
    }

    .permits-box h3 {
        color: #065494 !important;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .trail-cover-3 .trail-cover-section>div:nth-child(2) a {
        flex: 1;
        display: block;
    }

    .trail-cover-3 .trail-cover-section>div:nth-child(2) img {
        height: 195px;
    }

    /* Hide third image in 3-image layout */
    .trail-cover-3 .trail-cover-section>div:nth-child(3) {
        display: none;
    }

    /* Right sidebar info box */
    .trail-info-box {
        background: #f5f5f5;
        padding: 20px;
        border-radius: 0;
    }

    .trail-info-item {
        display: flex;
        align-items: flex-s;
    }

    .trail-cover-2 .trail-cover-section>div:last-child {
        flex: 0 0 calc(40% - 5px);
    }

    /* 3 images: 60% left (1 image), 40% right (2 images stacked) */
    .trail-cover-3 .trail-cover-section {
        display: flex;
        gap: 10px;
    }

    .trail-cover-3 .trail-cover-section>div:first-child {
        flex: 0 0 calc(60% - 5px);
    }

    .trail-cover-3 .trail-cover-section>div:first-child img {
        height: 400px;
    }

    .trail-cover-3 .trail-cover-section>div:nth-child(2) {
        flex: 0 0 calc(40% - 5px);
        display: flex;
        fle

        /* Top cover images - responsive layouts with gaps */
        .trail-cover-section {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .trail-cover-section img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 0;
        }

        /* 1 image: full width */
        .trail-cover-1 .trail-cover-section {
            display: block;
        }

        .trail-cover-1 .trail-cover-section img {
            width: 100%;
        }

        /* 2 images: 60/40 split */
        .trail-cover-2 .trail-cover-section>div:first-child {
            flex: 0 0 calc(60% - 5px);
            align-items: flex-start;
            gap: 12px;
        }

        .trail-section-title::before {
            content: '';
            width: 4px;
            height: 28px;
            background: #DC143C;
            display: inline-block;
            flex-shrink: 0;
        }

        /* Sticky split-screen layout */
        .trail-content-wrapper {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        .trail-left-column {
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
            position: sticky;
            top: 80px;
            align-self: flex-start;
        }

        .trail-right-column {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }

        tion span,
        .trail-detail-section li {
            color: #000000 !important;
        }

        /* Navy blue titles with red line */
        .trail-main-title {
            color: #065494 !important;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .trail-main-title::before {
            content: '';
            width: 4px;
            height: 32px;
            background: #DC143C;
            display: inline-block;
            flex-shrink: 0;
        }

        .trail-section-title {
            color: #065494 !important;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            border-radius: 0;
            text-decoration: none;
            transition: background 0.3s;
        }

        .view-details-btn:hover {
            background: #065494;
            color: #fff;
        }

        /* ================================
   Trail Detail Page Styles
   ================================ */

        .trail-detail-section {
            background-color: #ffffff !important;
            padding-top: 40px;
        }

        /* Enforce a consistent uniform size for all Fancybox overlay gallery images */
        .fancybox__image,
        .f-image {
            width: 90vw !important;
            height: 85vh !important;
            object-fit: contain !important;
            margin: auto !important;
        }

        @media (min-width: 992px) {

            .fancybox__image,
            .f-image {
                width: 55vw !important;
                height: 60vh !important;
                max-width: 1050px !important;
                max-height: 700px !important;
            }
        }