body {
    background-color: #f7f8fa;
}

a {
	text-decoration: none;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #e0af2a;
    --bs-btn-border-color: #e0af2a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #af9149;
    --bs-btn-hover-border-color: #af9149;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #af9149;
    --bs-btn-active-border-color: #af9149;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #e0af2a;
    --bs-btn-disabled-border-color: #e0af2a;
}

.btn-outline-primary {
    --bs-btn-color: #e0af2a;
    --bs-btn-border-color: #e0af2a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #af9149;
    --bs-btn-hover-border-color: #af9149;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #af9149;
    --bs-btn-active-border-color: #af9149;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #e0af2a;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #e0af2a;
    --bs-gradient: none;
}

.bg-primary {
    background-color: #196d87 !important;
}

.breadcrumbs a {
    color: #fff;
}

a {
	color: #196d87;
}

#ez-toc-container {
    width: 100%;
}

/* ==============================================
   Modern Header Styling
   ============================================== */

.site-header {
    position: relative;
    z-index: 1000;
}

.site-header.is-sticky{
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  animation: header-drop .25s ease;
}

.site-header.is-sticky .navbar{
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

body.has-sticky-header{ padding-top: var(--header-h, 90px); }

@keyframes header-drop{
  from{ transform: translateY(-100%); opacity:.7; }
  to{ transform: translateY(0); opacity:1; }
}

@media (min-width: 783px){
  body.admin-bar .site-header.is-sticky{ top: 32px; }
}
@media (max-width: 782px){
  body.admin-bar .site-header.is-sticky{ top: 46px; }
}

.navbar {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand img {
    max-height: 65px;
    transition: all 0.3s ease;
}

a.custom-logo-link img {
    max-height: 65px;
	width: auto;
    transition: all 0.3s ease;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    padding: 0.5rem 0.4rem !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active > .nav-link {
    color: #e0af2a !important;
}

.nav-link:after, .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background: #e0af2a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
	border: none !important;
}

.nav-link:hover:after,
.nav-item.active > .nav-link:after {
    transform: scaleX(1);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 220px;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
	top: 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #2c3e50;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #196d87;
}

/* Multi-level Dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

/* Header Right Elements */
.header-right {
    gap: 1rem;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
	background-color: rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background-color: rgb(194 138 9 / 10%);
    color: #196d87 !important;
}

.contact-icon a {
    width: 36px;
    height: 36px;
    background: green;
    display: block;
    line-height: 35px;
    text-align: center;
    border-radius: 30px;
    font-size: 25px;
	transition: all 0.3s ease-in-out;
}

.contact-icon a:hover {
    background: #e0af2a;
}

.contact-icon .phone {
    background: #196d87;
}

.tailor-made-btn {
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #e0af2a;
    border-color: #e0af2a;
}

.tailor-made-btn:hover {
    background-color: #196d87;
    border-color: #196d87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid #eee;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        border-left: 3px solid #3498db;
    }
    
    .dropdown-item {
        padding-left: 2rem;
    }
    
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 1rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
    }
    
    .header-right {
        margin: 0 auto;
    }
}

/* Animation for dropdown */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu {
    animation: fadeIn 0.3s ease forwards;
}

/* Pre-footer Styles */
.pre-footer {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.pre-footer-card {
    text-align: center;
    padding: 1.5rem;
    height: 100%;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon {
    margin: -55px auto 20px;
    display: inline-block;
    width: 55px;
    background: #af9149;
    height: 55px;
    line-height: 55px;
    color: #fff;
    border-radius: 500px;
    font-size: 35px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.card-description {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section Styles */
.cta-section {
    padding: 4rem 0;
    background-color: #196d87;
    color: white;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: white;
    color: #196d87;
    border: none;
}

.cta-button:hover {
    background-color: #e0af2a;
	color: #fff;
}

/* Footer Styles */
.site-footer {
    background-color: #212529;
    color: white;
    padding: 4rem 0 0;
}

.footer-widgets {
    margin-bottom: 3rem;
}

.widget-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e0af2a;
}

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

footer .widget ul li a {
    color: #fff;
}

.footer-bottom {
    padding: 1.5rem 0;
    background-color: #1a1e21;
    font-size: 0.9rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: middle;
}

/* Contact Info Widget */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.contact-info-list i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #af9149;
}

/* Social Icons Widget */
.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #af9149;
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-prefix {
	display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Featured Tours */
.featured-tours {
    background: #fff;
}

.section-header {
    margin-bottom: 3rem;
}

.home-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.home-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
	transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #af9149;
}

.home-section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tour-card-title a {
    color: #333;
    text-decoration: none;
}

.tour-card-title a:hover {
    color: #e0af2a;
}

.tour-card-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.tour-destination i {
    margin-right: 5px;
    color: #e0af2a;
}

.tour-card-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tour-card-price span {
    font-weight: 700;
    color: #e0af2a;
    font-size: 1.3rem;
}

.tour-card-btn {
    width: 100%;
    padding: 0.5rem;
    font-weight: 600;
}

/* Destinations Section */
.destinations-section {
    background: #f8f9fa;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.destination-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.destination-tours-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Custom Inquiry */

.inquiry-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s;
}

.feature-card, .inquiry-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.inquiry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.inquiry-content {
    padding: 3rem;
}

.inquiry-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.inquiry-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.inquiry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 2rem;
}

.inquiry-features span {
    color: #495057;
    font-size: .95rem;
    position: relative;
    padding-left: 20px;
}

.inquiry-features span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 600;
}

.inquiry-btn {
    background: linear-gradient(45deg, #b88316, #d6b354);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
	text-decoration: none;
    color: #fff;
}

/* Why Choose Us */
.why-choose-us {
    background: #fff;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    margin-bottom: 2rem;
}

.feature-icon {
    flex: 0 0 50px;
    font-size: 1.5rem;
    color: #af9149;
    padding-top: 5px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: #666;
    margin-bottom: 0;
}

.why-choose-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(13, 110, 253, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-rating {
    color: #ffc107;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destination-card {
        height: 200px;
    }
    
    .why-choose-image {
        margin-top: 2rem;
    }
}

/* Destination Hero */
.page-hero, .destination-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.page-hero::before, .destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* Destination Content */
.destination-description {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #af9149;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Tours Section */
.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tour-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tour-card-title a {
    color: #333;
    text-decoration: none;
}

.tour-card-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.tour-destination i {
    margin-right: 5px;
    color: #af9149;
}

.tour-card-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tour-card-price span {
    font-weight: 700;
    color: #af9149;
    font-size: 1.3rem;
}

.tour-card-btn {
    width: 100%;
    padding: 0.5rem;
    font-weight: 600;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    display: block;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 200px;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.destination-title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.destination-tours-count {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .destination-hero {
        height: 50vh;
        min-height: 300px;
    }
}

/* Tour Hero */
.tour-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.tour-hero .hero-content {
    position: relative;
    z-index: 2;
}

.tour-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
	color: #fff;
}

.tour-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.tour-hero .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1.5rem;
}

.meta-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.meta-item i {
    margin-right: 5px;
}

/* Tour Overview */
.tour-description iframe, .tour-description img {
    max-width: 100%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #af9149;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Highlights */
.highlight-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    flex: 0 0 50px;
    height: 50px;
    background: #e0af2a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.highlight-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Itinerary */
.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #dee2e6 !important;
}

.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #af9149;
}

.accordion-body {
    padding: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    display: block;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Inclusions & Exclusions */
.inclusions-box, .exclusions-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.inclusions-list, .exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li, .exclusions-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.inclusions-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.exclusions-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #dc3545;
}

.single-content-nav ul {
	margin: 0;
	font-weight: bold;
}

.single-content-nav ul li {
    display: inline-block;
}

.single-content-nav ul li a {
    display: block;
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 22px 20px;
    font-size: 14px;
    position: relative;
	text-decoration: none;
}

/* Sidebar */
.tour-sidebar {
    margin-top: -182px;
    position: relative;
}

.booking-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.booking-header {
    background: #af9149;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.booking-title {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.tour-price {
    margin-top: 10px;
}

.tour-price .from {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tour-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.booking-body {
    padding: 20px;
}

.booking-form .form-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.tour-details-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #af9149;
}

.tour-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-details-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.detail-label {
    font-weight: 600;
    color: #555;
}

.detail-label i {
    width: 20px;
    text-align: center;
}

.detail-value {
    color: #333;
    text-align: right;
}

.tour-map-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tour-map {
    height: 250px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.tour-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.help-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.help-content p {
    margin-bottom: 1rem;
}

.help-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.help-contacts li {
    padding: 8px 0;
}

.help-contacts i {
    width: 20px;
    text-align: center;
}

/* Related Tours */
.related-tours {
    background: #f8f9fa;
}

.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tour-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tour-card-title a {
    color: #333;
    text-decoration: none;
}

.tour-card-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.tour-destination i {
    margin-right: 5px;
    color: #af9149;
}

.tour-card-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tour-card-price span {
    font-weight: 700;
    color: #af9149;
    font-size: 1.3rem;
}

.tour-card-btn {
    width: 100%;
    padding: 0.5rem;
    font-weight: 600;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.page-numbers li {
    margin: 0 5px;
}

.page-numbers a,
.page-numbers span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    color: #196d87;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbers a:hover {
    background-color: #196d87;
	color: #fff;
}

.page-numbers .current {
    background-color: #e0af2a;
    color: #fff;
    border-color: #e0af2a;
}

.page-numbers .dots {
    border: none;
    padding: 8px 5px;
}

/* Pagination Container */
.pagination-wrapper {
    margin: 40px 0;
    text-align: center;
}

/* Navigation Element */
.navigation.pagination {
    display: inline-block;
}

/* Screen Reader Text - Hidden but accessible */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Pagination Links Container */
.nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* Page Number Styles */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

/* Current Page Style */
.page-numbers.current {
    background-color: #e0af2a;
    color: white;
    border-color: #e0af2a;
}

/* Hover Effects */
.page-numbers:not(.current):hover {
    background-color: #e9ecef;
    color: #e0af2a;
    border-color: #dee2e6;
}

/* Next Button Specific Styles */
.page-numbers.next {
    padding: 0 15px;
    width: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.tour-hero .hero-title {
		font-size: 1.5rem;
	}
	.tour-hero .breadcrumb {
		margin-bottom: 0;
	}
	.tour-meta {
		gap: 3px;
	}
	#single-content-nav {
		overflow-x: auto !important;
	}
	.single-content-nav ul {
		display: flex;
	}
	.single-content-nav ul li a {
		padding: 15px 15px;
	}
}

@media (max-width: 576px) {
    .nav-links {
        gap: 4px;
    }
    
    .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .page-numbers.next {
        padding: 0 10px;
    }
}

/* Active State for Better UX */
.page-numbers:active {
    transform: scale(0.98);
}

/* About Hero */
.about-hero {
    background-color: #af9149;
    padding: 80px 0;
    margin-bottom: 40px;
}

.about-hero .page-title {
    font-weight: 700;
    color: #fff;
}

/* Section Styling */
.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-divider {
    height: 3px;
    width: 80px;
    background: #af9149;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Our Story */
.our-story .story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.our-story .story-content .highlight {
    font-weight: 600;
    font-style: italic;
    font-size: 1.2rem;
    color: #af9149;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.2), rgba(255, 193, 7, 0.2));
    z-index: 1;
}

/* How It Works */
.how-it-works .works-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.how-it-works .works-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
}

.step-card {
    padding: 25px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #af9149;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Statistics */
.statistics {
    background-color: #f8f9fa;
}

.stat-card {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 40px;
    color: #af9149;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Search Hero */
.search-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('<?php echo get_template_directory_uri(); ?>/assets/images/search-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: #000;
    margin-bottom: 50px;
}

.search-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.search-form .form-control,
.search-form .form-select {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: #af9149;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.search-form .btn-primary {
    background: #e0af2a;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-form .btn-primary:hover {
    background: #af9149;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

/* Search Results */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #af9149;
}

.search-filters {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #eee;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    background: #e9f0ff;
    color: #af9149;
    padding: 5px 15px;
    border-radius: 30px;
    margin: 5px;
    font-weight: 500;
}

.remove-filter {
    color: #666;
    margin-left: 8px;
    text-decoration: none;
    font-size: 0.9rem;
}

.remove-filter:hover {
    color: #dc3545;
}

/* Tour Cards */
.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tour-card-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-card-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.tour-destination i {
    margin-right: 5px;
    color: #af9149;
}

.tour-card-price {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.tour-card-price span {
    font-weight: 700;
    color: #af9149;
    font-size: 1.4rem;
}

.tour-card-btn {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* No Results */
.no-results {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-results-icon {
    color: #ddd;
}

/* Form Container */
.wpcf7-form {
    font-family: inherit;
    color: #333;
}

/* Input Box */
.input-box {
    margin-bottom: 20px;
}

.input-box br {
    display: none;
}

.wpcf7 p {
    margin: 0;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.label-text {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3436;
}

/* Form Group */
.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #636e72;
    font-size: 16px;
	z-index: 999;
}

/* Input Fields */
.wpcf7-form-control {
    width: 100%;
    height: 50px;
    padding: 10px 15px 10px 40px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #fff;
    color: #2d3436;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
    border-color: #0984e3;
    box-shadow: 0 0 0 1px #0984e3;
    outline: none;
}

/* Select Dropdown */
.select-contain {
    position: relative;
}

.select-contain-select {
    width: 100%;
    height: 50px;
    padding: 10px 15px 10px 40px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #fff;
    color: #2d3436;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Quantity Box */
.qty-box {
    margin-bottom: 15px;
}

.qty-box label {
    margin-bottom: 0;
}

.qtyBtn {
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    overflow: hidden;
}

.qtyDec, .qtyInc {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f6fa;
    cursor: pointer;
    user-select: none;
}

.qtyDec:hover, .qtyInc:hover {
    background-color: #dfe6e9;
}

.qtyDec i, .qtyInc i {
    font-size: 12px;
    color: #636e72;
}

.qty-box input[type="number"] {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid #dfe6e9;
    border-right: 1px solid #dfe6e9;
    text-align: center;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-box input[type="number"]::-webkit-outer-spin-button,
.qty-box input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Textarea */
.message-control {
    height: 120px;
    resize: vertical;
    padding-top: 15px;
}

/* Submit Button */
.theme-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    background-color: #e0af2a;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: #196d87;
    color: #fff;
}

/* ==============================================
   Single Post Styling
   ============================================== */

.single-post-content {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.single-post-content .entry-header {
    text-align: center;
    margin-bottom: 2rem !important;
}

.single-post-content .entry-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.single-post-content .entry-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.single-post-content .entry-meta a {
    color: #196d87;
    text-decoration: none;
}

.single-post-content .entry-meta a:hover {
    color: #e0af2a;
    text-decoration: underline;
}

.single-post-content .featured-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.single-post-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.single-post-content .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post-content .entry-content h2,
.single-post-content .entry-content h3,
.single-post-content .entry-content h4 {
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.single-post-content .entry-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 0.5rem;
}

.single-post-content .entry-content h3 {
    font-size: 1.5rem;
}

.single-post-content .entry-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
}

.single-post-content .entry-content a:hover {
    color: #2980b9;
    border-bottom-style: solid;
}

.single-post-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.single-post-content .entry-content blockquote {
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.single-post-content .entry-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.single-post-content .entry-footer a {
    color: #196d87;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.nav-previous,
.nav-next {
    max-width: 48%;
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #2c3e50;
}

/* ==============================================
   Sidebar Styling
   ============================================== */

.sidebar {
    padding-left: 2rem;
}

.sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f1f1;
}

/* Latest Posts Widget */
.sidebar .latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .latest-posts-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}

.sidebar .latest-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .latest-posts-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #34495e;
}

.sidebar .latest-posts-list a:hover {
    color: #3498db;
}

.sidebar .post-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.sidebar .post-info h4 {
    font-size: 1rem;
    margin: 0 0 0.3rem;
    line-height: 1.4;
}

.sidebar .post-info h4:hover {
    color: #196d87;
}

.sidebar .post-info time {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Latest Tours Widget */
.sidebar .latest-tours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .latest-tours-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}

.sidebar .latest-tours-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .latest-tours-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #34495e;
}

.sidebar .latest-tours-list a:hover {
    color: #3498db;
}

.sidebar .tour-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.sidebar .tour-info h4 {
    font-size: 1rem;
    margin: 0 0 0.3rem;
    line-height: 1.4;
}

.sidebar .tour-info h4 {
    color: #196d87;
}

.sidebar .tour-price {
    display: block;
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
}

/* Categories Widget */
.sidebar .categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 1;
}

.sidebar .categories-list li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #eee;
}

.sidebar .categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .categories-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #34495e;
    padding: 0.3rem 0;
}

.sidebar .categories-list a:hover {
    color: #196d87;
}

.count {
    background: #f1f1f1;
    color: #7f8c8d;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* ==============================================
   Comments Styling
   ============================================== */

.comments-area {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f1f1;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    position: relative;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.fn {
    font-weight: 600;
    color: #2c3e50;
}

.comment-metadata {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-left: auto;
}

.comment-content {
    margin-left: 66px;
}

.comment-content p {
    margin-bottom: 0;
}

.reply {
    text-align: right;
    margin-top: 0.5rem;
}

.comment-reply-link {
    font-size: 0.8rem;
    color: #3498db;
    text-decoration: none;
}

.comment-reply-link:hover {
    text-decoration: underline;
}

.comment-respond {
    margin-top: 2rem;
}

.comment-reply-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.comment-form {
    display: grid;
    grid-gap: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.comment-form textarea {
    min-height: 150px;
}

.form-submit {
    text-align: right;
}

.submit {
    background: #196d87;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit:hover {
    background: #2980b9;
}

/* ==============================================
   Related Posts Styling
   ============================================== */

.related-posts {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.related-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.related-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #196d87;
    margin: 0.5rem auto 0;
}

.related-post {
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.related-post-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.related-post-date {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* ==============================================
   Pages Template Styling
   ============================================== */

.page-content {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.page-content .entry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-content .entry-title {
    font-size: 2.2rem;
    color: #2c3e50;
}

.page-content .featured-image-wrapper {
    text-align: center;
}

.page-content .featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==============================================
   Prices Section
   ============================================== */

/* Pricing Section Styles */

#prices .container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card {
    transition: all 0.3s ease;
    border-radius: 8px !important;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.pricing-toggle {
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
	width: 100%;
}

.pricing-toggle:hover {
    background: rgba(0,123,255,0.05) !important;
    text-decoration: none !important;
}

.pricing-toggle:focus {
    box-shadow: none !important;
    outline: none !important;
}

.pricing-toggle[aria-expanded="true"] {
    background: #f7efa62b !important;
    color: #af9149 !important;
}

.pricing-toggle[aria-expanded="true"] .plus-icon {
    display: none !important;
}

.pricing-toggle[aria-expanded="true"] .minus-icon {
    display: inline-block !important;
}

.pricing-toggle[aria-expanded="false"] .plus-icon {
    display: inline-block !important;
}

.pricing-toggle[aria-expanded="false"] .minus-icon {
    display: none !important;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
	margin-left: 10px;
}

.period-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.badge-primary {
    background-color: #196d87 !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-danger {
    background-color: #e0af2a !important;
    font-size: 0.95rem;
    font-weight: 600;
}

.room-type-item {
    border-left: none !important;
    border-right: none !important;
    transition: background-color 0.2s ease;
}

.room-type-item:hover {
    background-color: rgba(0,123,255,0.03) !important;
}

.room-type-item:first-child {
    border-top: none !important;
}

.room-type-item:last-child {
    border-bottom: none !important;
}

.card-header {
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.collapse {
    transition: all 0.35s ease;
}

.alert-info {
    --bs-alert-color: #af9149;
    --bs-alert-bg: #fff7e3;
    --bs-alert-border-color: #ecc15a;
    --bs-alert-link-color: var(--bs-info-text-emphasis);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
    .pricing-toggle > div {
        margin-top: 10px;
        align-self: flex-end;
    }
    
    .period-name {
        font-size: 1rem;
    }
}

/* ==============================================
   Responsive Adjustments
   ============================================== */

@media (max-width: 768px) {
    .related-posts {
        padding: 1.5rem;
    }
    
    .related-post {
        margin-bottom: 1.5rem;
    }
    
    .related-post:last-child {
        margin-bottom: 0;
    }
    
    .page-content {
        padding: 1.5rem;
    }
    
    .page-content .entry-title {
        font-size: 1.8rem;
    }
}

/* ==============================================
   Tailor Made
   ============================================== */
/* Tailor Made Page Styling */
.tailor-made-page .tailor-made-hero {
    background: #196d87;
}

.tailor-made-page .divider {
    height: 3px;
    width: 80px;
}

.tailor-made-page .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tailor-made-page .card:hover .icon-box {
    transform: translateY(-5px);
}

/* Contact Form Styling */
.tailor-made-page .wpcf7-form {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tailor-made-page .wpcf7-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.tailor-made-page .wpcf7-form input,
.tailor-made-page .wpcf7-form textarea,
.tailor-made-page .wpcf7-form select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.tailor-made-page .wpcf7-form textarea {
    min-height: 150px;
}

.tailor-made-page .wpcf7-submit {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tailor-made-page .wpcf7-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

@media (max-width: 767.98px) {
    .tailor-made-page .tailor-made-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .tailor-made-page .hero-buttons {
        justify-content: center;
    }
    
    .tailor-made-page .contact-info {
        margin-top: 2rem;
    }
}

/* ==============================================
   Responsive Adjustments
   ============================================== */

@media (max-width: 992px) {
    .sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .single-post-content {
        padding: 1.5rem;
    }
    
    .entry-title {
        font-size: 2rem;
    }
	
	.tour-card-title.entry-title {
        font-size: 1.3rem;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
    }
    
    .nav-next {
        margin-top: 1rem;
    }
    
    .comment-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-metadata {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .comment-content {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .form-group {
        margin-bottom: 15px;
    }
    
    .wpcf7-form-control {
        height: 45px;
        font-size: 13px;
    }
}


/* Responsive */
@media (max-width: 991.98px) {
    .search-hero {
        padding: 100px 0 60px;
    }
    
    .search-form-container {
        padding: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .search-hero {
        padding: 80px 0 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tour-card-img {
        height: 200px;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
	.navbar {
		padding: 0.5rem 0 !important;
	}
	a.custom-logo-link {
		margin-right: auto;
	}
	.navbar-toggler {
		padding: 0;
	}
	.navbar-toggler:focus {
		border: none;
		outline: 0;
		box-shadow: none;
	}
    .tour-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tour-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .tour-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#searchModal {
    z-index: 9999 !important;
}
.modal-backdrop {
    z-index: 9998 !important;
}

.cta-section {
					position: relative;
					color: #fff;
					border-radius: 10px;
				}

				.cta-bg-wrap {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					overflow: hidden;
				}

				.cta-bg {
					position: absolute;
					width: 100%;
					height: 100%;
					background-size: cover;
					background-position: center;
					background-repeat: no-repeat;
					transform: scale(1.1);
					transition: transform 10s ease-out;
				}

				.cta-section:hover .cta-bg {
					transform: scale(1);
				}

				.cta-bg-overlay {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background: #196d87eb;
				}

				.cta-title {
					font-size: 2.5rem;
					font-weight: 700;
					text-shadow: 0 2px 4px rgba(0,0,0,0.3);
				}

				.cta-desc {
					font-size: 1.2rem;
					line-height: 1.6;
				}

				.btn-primary:hover {
					transform: translateY(-3px);
					box-shadow: 0 10px 20px rgba(0,0,0,0.2);
				}
				
				.whatsapp-btn {
					background: #25D366;
					color: #fff;
				}

				.whatsapp-btn:hover {
					background-color: #27be5f;
					color: #fff;
				}

				@media (max-width: 768px) {
					.cta-title {
						font-size: 2rem;
					}
					.cta-desc {
						font-size: 1rem;
					}
				}


.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('<?php echo get_stylesheet_directory_uri(); ?>/assets/img/contact-bg.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.contact-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.contact-form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.map-container {
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.contact-hours {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.contact-hours h4 {
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

.contact-section .card i {
    background: linear-gradient(45deg, #b88316, #d6b354);
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

.tours-carousel {
    margin: 0 -15px;
    position: relative;
}

.tour-slide {
    padding: 20px 15px;
    outline: none;
}

.flip-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .flip-card {
            perspective: 1500px;
            height: 350px;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 15px;
        }
        
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
        }
        
        .flip-card-front {
            background-position: center;
            background-size: cover;
            color: white;
            overflow: hidden;
        }
        
        .flip-card-front:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
            border-radius: 15px;
        }
        
        .flip-card-front-content {
            z-index: 2;
            position: relative;
        }
        
        .flip-card-front i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .flip-card-front h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .flip-card-front p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .flip-card-back {
            background: linear-gradient(45deg, #e0af2a, #196d87);
            color: white;
            transform: rotateY(180deg);
            overflow-y: auto;
        }
        
        .flip-card-back h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .flip-card-back p {
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .flip-card-back ul {
            text-align: left;
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .flip-card-back li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .flip-cards-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .flip-card {
                height: 280px;
            }
        }

.featured-tours .slick-prev:before, .featured-tours .slick-next:before {
    font-size: 40px;
    color: #e0af2a;
}

.featured-tours .slick-prev, .featured-tours .slick-next {
    z-index: 9999;
    width: 40px;
    height: 40px;
}

.featured-tours .slick-next {
    right: -40px;
}

.featured-tours .slick-prev {
    left: -40px;
}

@media (max-width: 768px) {
	.featured-tours .slick-next {
		right: 20px;
	}

	.featured-tours .slick-prev {
		left: 20px;
	}
}

.wptripadvisor_t1_DIV_2 {
    background: #fff !important;
}

#contactModal {
    z-index: 9999;
}

.fixed-mobile-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    background: linear-gradient(to top, rgba(28, 50, 92, 0.1), transparent);
    backdrop-filter: blur(10px);
}

.mobile-enquiry-btn {
    display: block;
    width: 100%;
    background: #e0af2a;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    padding: 10px 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 20px rgba(197, 149, 91, 0.3);
}

.hero-area {
    position: relative;
    background-size: cover;
    background-position: center
}

.bread-bg {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .4);
    z-index: 1
}

.hero-wrap {
    position: relative;
    z-index: 2
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    background: #fff;
    color: #191c71
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg,#b88316,#d6b354);
    color: #fff
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(45deg,#d6b354,#b88316);
}

.hero-buttons .btn-outline-light:hover {
    background-color: #f5f5f5
}

.modern-destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(25 28 113 / .1);
    transition: all 0.3s ease;
    position: relative;
    height: 300px
}

.modern-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(25 28 113 / .15)
}

.destination-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 300px
}

.destination-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden
}

.destination-image,.destination-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.modern-destination-card:hover .destination-image {
    transform: scale(1.05)
}

.destination-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 50%) 50%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease
}

.modern-destination-card:hover .destination-content-overlay {
    padding-bottom: 35px;
    background: linear-gradient(0deg, rgb(28 28 28 / 90%) 0%, rgb(0 1 18 / 60%) 50%, transparent 100%);
}

.destination-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 4px rgb(0 0 0 / .3);
    transition: all 0.3s ease
}

.modern-destination-card:hover .destination-title {
    transform: translateY(-3px)
}

.destination-cta-wrapper {
    display: flex;
    justify-content: flex-start
}

.destination-cta {
    background: #e0af2a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgb(0 0 0 / .2)
}

.destination-cta:hover {
    background: #d89b2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgb(0 0 0 / .25)
}

.destination-cta svg {
    flex-shrink: 0;
    transition: transform 0.3s ease
}

.destination-cta:hover svg {
    transform: translateX(3px)
}

.bread-bg #breadcrumbs a {
    color: #fff;
}