/**
 * BSV Elementor Widgets CSS
 */

/* Common Styles */
.bsv-section-header {
    margin-bottom: 0px;
}

.bsv-section-header .bsv-tours-title,
.bsv-section-header .bsv-destinations-title,
.bsv-section-header .bsv-testimonials-title {
    font-weight: 700;
    margin: 0px;
    padding: 0px;
    padding-left: 10px;
}

.bsv-section-header .bsv-tours-subtitle,
.bsv-section-header .bsv-destinations-subtitle,
.bsv-section-header .bsv-testimonials-subtitle {
    max-width: 800px;
    margin: 0px;
    padding: 0px;
    padding-left: 10px;
}

.bsv-view-all-button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.bsv-view-all-button {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bsv-view-all-button:hover {
    background-color: #34a853;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tours Widget Styles */
.bsv-tour-card-wrapper {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 15px; /* Add gutter */
    box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .bsv-tour-card-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .bsv-tour-card-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.bsv-tour-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.bsv-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bsv-tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bsv-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bsv-tour-card:hover .bsv-tour-image img {
    transform: scale(1.1);
}

.bsv-tour-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bsv-featured-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #fbbc05;
    color: #222222;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bsv-tour-details {
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.bsv-tour-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.bsv-tour-title a {
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bsv-tour-title a:hover {
    color: #1a73e8;
}

.bsv-tour-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.bsv-tour-meta-item {
    margin-right: 15px;
    margin-bottom: 5px;
    font-size: 13px;
    color: #666666;
}

.bsv-tour-meta-item i {
    margin-right: 5px;
}

.bsv-tour-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.bsv-tour-button {
    align-self: flex-start;
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bsv-tour-button:hover {
    background-color: #34a853;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Destinations Widget Styles */
.bsv-destination-card-wrapper {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px; /* Add gutter */
    box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .bsv-destination-card-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .bsv-destination-card-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }
}



.bsv-destination-card {
    /* Ensure cards don't stretch vertically */
    display: flex;
    flex-direction: column;
    /* the rest*/
    height: 100%;
    border-radius: 30px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bsv-destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bsv-destination-image {
    position: relative;
    height: 30%;
    overflow: hidden;
}

.bsv-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bsv-destination-card:hover .bsv-destination-image img {
    transform: scale(1.1);
}

.bsv-destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
}

.bsv-destination-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.bsv-destination-details {
    padding: 20px;
    background-color: #ffffff;
}

.bsv-destination-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.bsv-destination-title a {
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bsv-destination-content-overlay .bsv-destination-title a {
    color: #ffffff;
}

.bsv-destination-title a:hover {
    color: #1a73e8;
}

.bsv-destination-content-overlay .bsv-destination-title a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.bsv-destination-location {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.bsv-destination-content-overlay .bsv-destination-location {
    color: #ffffff;
}

.bsv-destination-location i {
    margin-right: 5px;
}

.bsv-destination-description {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
}

.bsv-destination-content-overlay .bsv-destination-description {
    color: #ffffff;
    opacity: 0.9;
}

/* Destinations Widget Pagination Styles */
.bsv-destinations-pagination {
    margin-top: 40px;
    text-align: center;
}

.bsv-destinations-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsv-destinations-pagination li {
    margin: 0 5px;
}

.bsv-destinations-pagination a,
.bsv-destinations-pagination span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 30%;
    border: 1px solid #0C513F;
    color: #0C513F;
    background-color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bsv-destinations-pagination a:hover {
    background-color: #0C513F;
    color: white;
    border-color: #0C513F;
}

.bsv-destinations-pagination span.current {
    background-color: #0C513F;
    color: white;
    border-color: #0C513F;
}

.bsv-destinations-pagination .page-numbers.dots {
    border: none;
    width: auto;
}

@media (max-width: 480px) {
    .bsv-destinations-pagination a, 
    .bsv-destinations-pagination span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}
/* Tours Widget Pagination Styles */
.bsv-tours-pagination {
    margin-top: 40px;
    text-align: center;
}

.bsv-tours-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsv-tours-pagination li {
    margin: 0 5px;
}

.bsv-tours-pagination a,
.bsv-tours-pagination span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 30%;
    border: 1px solid #0C513F;
    color: #0C513F;
    background-color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bsv-tours-pagination a:hover {
    background-color: #0C513F;
    color: white;
    border-color: #0C513F;
}

.bsv-tours-pagination span.current {
    background-color: #0C513F;
    color: white;
    border-color: #0C513F;
}

.bsv-tours-pagination .page-numbers.dots {
    border: none;
    width: auto;
}

@media (max-width: 480px) {
    .bsv-tours-pagination a, 
    .bsv-tours-pagination span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}
/* Testimonials Widget Styles */
/* Testimonials Widget Styles */
.bsv-testimonials-widget {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}


.bsv-testimonials-title {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 700;
}

.bsv-testimonials-subtitle {
    font-size: 1.2rem;
    color: #2E8B57;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.bsv-testimonials-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4AF37;
}

.bsv-testimonial-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 0 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bsv-testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bsv-testimonial-quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    color: #D4AF37;
    opacity: 0.2;
    font-size: 2.5rem;
    z-index: 1;
}

.bsv-testimonial-content {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-top: 40px;
    padding-bottom: 30px;
}

.bsv-testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.bsv-testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.bsv-testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bsv-testimonial-author-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 15px;
}

.bsv-testimonial-author-name {
    font-weight: 700;
    color: #003366;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.bsv-testimonial-author-title {
    color: #2E8B57;
    font-size: 0.9rem;
    margin: 0;
}

/* Slick slider overrides */
.slick-list {
    padding: 20px 0 !important;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    text-indent: -9999px;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #D4AF37;
    transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bsv-testimonials-title {
        font-size: 2.2rem;
    }
    
    .bsv-testimonial-item {
        padding: 30px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .bsv-testimonial-slider .slick-prev {
        left: -15px;
    }

    .bsv-testimonial-slider .slick-next {
        right: -15px;
    }
}

@media (max-width: 767px) {
    .bsv-tour-image {
        height: 180px;
    }
    .bsv-destination-image {
        height: 90px;
    }
    .bsv-testimonial-slider .slick-prev,
    .bsv-testimonial-slider .slick-next {
        display: none !important;
    }

    .bsv-tour-meta {
        flex-direction: column;
    }

    .bsv-tour-meta-item {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .bsv-testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .bsv-testimonial-rating {
        margin-top: 10px;
    }
}
/* Unified Search Widget Styles */
/* Main container styles */
.bsv-unified-search {
    padding: 10px;
    background: #fff;
    border-radius:50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.bsv-unified-search .search-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Main row layout - everything in one line */
.bsv-unified-search .search-column {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

/* Search input - 60% width */
.bsv-unified-search .search-input-wrap {
    flex: 0 0 80%; /* Fixed 60% width */
    min-width: 250px;
}

.bsv-unified-search .search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.bsv-unified-search .search-input:focus {
    border-color: #1a73e8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26,115,232,0.1);
    outline: none;
}

/* Filters container - 20% width */
.bsv-unified-search .filter-column {
    flex: 0 0 20%; /* Fixed 20% width */
    display: flex;
    gap: 10px;
}

.bsv-unified-search .filter-item {
    flex-grow: 1;
    min-width: 0; /* Allows proper shrinking */
}

.bsv-unified-search .filter-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    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 15px center;
    background-size: 15px;
}

.bsv-unified-search .filter-select:focus {
    border-color: #1a73e8;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(26,115,232,0.1);
    outline: none;
}

/* Search button - 20% width */
.bsv-unified-search .search-button-wrap {
    flex: 0 0 20%; /* Fixed 20% width */
}

.bsv-unified-search .search-button {
    padding: 15px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 15px 30px 15px 30px;
}

.bsv-unified-search .search-button:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,115,232,0.2);
}

.bsv-unified-search .search-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bsv-unified-search {
        padding: 20px;
        width: 90%;
    }

    .bsv-unified-search .search-column {
        flex-direction: column;
        gap: 15px;
    }

    .bsv-unified-search .search-input-wrap{
        flex: 0 0 50%;
        width: 50%;
    }
    .bsv-unified-search .filter-column{
        flex: 0 0 50%; 
        width: 50%;
    }
    .bsv-unified-search .search-button-wrap {
        flex: 0 0 50%; 
        width: 50%;
    }

    .bsv-unified-search .filter-column {
        flex-direction: column;
        gap: 15px;
    }
}

/* Force 4-column layout */
.row.g-3 {
    display: flex;
    flex-wrap: wrap;
}
/* Force 3-column layout */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}
/* Currency Switcher Container */
.currency-switcher-container {
    display: flex;
    justify-content: flex-end; /* Aligns children to the right */
    margin: 15px 0;
    width: 100%;
}

/* Currency Switcher Styles */
.currency-switcher {
    display: inline-flex;
    overflow: hidden;
    gap: 10px;
    padding: 10px;
}

.currency-btn {
    padding: 8px 15px;
    border: 2px solid #0C513F;
    border-radius: 30px;;
    background: #fff;
    color: #0C513F;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;

}

.currency-btn.active {
    background: #0C513F;
    color: white;
}
.currency-btn.active:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.currency-btn:not(.active):hover {
    background: #0C513F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* For Elementor sections */
.elementor-section .currency-switcher-container {
    max-width: 1200px; /* Match your content width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px; /* Match your section padding */
}