/*
Theme Name: Best Bali Travel
Theme URI: https://bestbalitravel.com
Author: Best Bali Travel Team
Author URI: https://bestbalitravel.com
Description: A professional tour booking WordPress theme for Best Bali Travel. Features tour listings, booking system, multi-language support, and WooCommerce integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bestbalitravel
Tags: tour-booking, travel, woocommerce, custom-menu, featured-images, translation-ready

Best Bali Travel Theme - Elementor Widgets Styles
*/

/* ========================================
   SEARCH BOX WIDGET
   ======================================== */
.bbt-search-box {
    padding: 20px;
    border-radius: 16px;
}

.bbt-search-bg-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bbt-search-bg-solid {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bbt-search-bg-dark {
    background: #1e3a5f;
    color: #fff;
}

.bbt-search-horizontal .bbt-search-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.bbt-search-horizontal .bbt-search-field {
    flex: 1;
    min-width: 180px;
}

.bbt-search-vertical .bbt-search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bbt-search-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
}

.bbt-search-field select,
.bbt-search-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: all 0.2s ease;
}

.bbt-search-field select:focus,
.bbt-search-field input:focus {
    outline: none;
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.bbt-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f5a623, #ffb84d);
    color: #1e3a5f;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bbt-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

/* ========================================
   TOUR CAROUSEL WIDGET
   ======================================== */
.bbt-tour-carousel {
    position: relative;
    padding: 0 50px;
}

.bbt-tour-carousel .swiper {
    overflow: visible;
}

.bbt-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.bbt-nav-btn:hover {
    background: #f5a623;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev.bbt-nav-btn {
    left: 0;
}

.swiper-button-next.bbt-nav-btn {
    right: 0;
}

.bbt-tour-carousel .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.bbt-tour-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.bbt-tour-carousel .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: #f5a623;
}

/* ========================================
   LOCATION CARDS WIDGET
   ======================================== */
.bbt-locations {
    display: grid;
    gap: 20px;
}

.bbt-locations.bbt-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bbt-locations.bbt-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bbt-locations.bbt-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.bbt-locations.bbt-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 992px) {

    .bbt-locations.bbt-cols-4,
    .bbt-locations.bbt-cols-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .bbt-locations.bbt-cols-3,
    .bbt-locations.bbt-cols-4,
    .bbt-locations.bbt-cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bbt-locations {
        grid-template-columns: 1fr;
    }
}

.bbt-location-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 3/4;
}

.bbt-location-image {
    position: absolute;
    inset: 0;
}

.bbt-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bbt-location-card:hover .bbt-location-image img {
    transform: scale(1.1);
}

.bbt-location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
}

.bbt-location-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
    z-index: 1;
}

.bbt-location-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
}

.bbt-location-desc {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 8px;
}

.bbt-location-count {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.bbt-location-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.bbt-location-card:hover .bbt-location-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   COUNTDOWN WIDGET
   ======================================== */
.bbt-countdown-widget {
    text-align: center;
    padding: 40px;
}

.bbt-countdown-header {
    margin-bottom: 30px;
}

.bbt-countdown-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 8px;
}

.bbt-countdown-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.bbt-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.bbt-countdown-unit {
    min-width: 80px;
    padding: 20px 15px;
    background: #1e3a5f;
    border-radius: 12px;
    color: #fff;
}

.bbt-countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #f5a623;
    line-height: 1;
}

.bbt-countdown-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.8;
}

/* Circles Style */
.bbt-countdown-circles .bbt-countdown-unit {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Minimal Style */
.bbt-countdown-minimal .bbt-countdown-unit {
    background: none;
    color: #1e3a5f;
}

.bbt-countdown-minimal .bbt-countdown-number {
    font-size: 48px;
}

.bbt-countdown-minimal .bbt-countdown-label {
    color: #6b7280;
}

/* ========================================
   PRICING TABLE WIDGET
   ======================================== */
.bbt-pricing-table {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.bbt-pricing-plan {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bbt-pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bbt-plan-featured {
    transform: scale(1.05);
    border: 2px solid #f5a623;
    z-index: 1;
}

.bbt-plan-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.bbt-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: #f5a623;
    color: #1e3a5f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.bbt-plan-header {
    margin-bottom: 24px;
}

.bbt-plan-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 4px;
}

.bbt-plan-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.bbt-plan-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.bbt-price-original {
    display: block;
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.bbt-price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.bbt-price-currency {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a5f;
    margin-top: 8px;
}

.bbt-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1;
}

.bbt-price-period {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.bbt-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.bbt-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #4b5563;
}

.bbt-plan-features li:last-child {
    border-bottom: none;
}

.bbt-plan-features svg {
    color: #10b981;
    flex-shrink: 0;
}

.bbt-pricing-plan .bbt-btn {
    width: 100%;
}

/* ========================================
   GALLERY WIDGET
   ======================================== */
.bbt-gallery-grid {
    display: grid;
    gap: 10px;
}

.bbt-gallery.bbt-cols-2 .bbt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}

.bbt-gallery.bbt-cols-3 .bbt-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.bbt-gallery.bbt-cols-4 .bbt-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
}

.bbt-gallery.bbt-cols-5 .bbt-gallery-grid {
    grid-template-columns: repeat(5, 1fr);
}

.bbt-gallery.bbt-cols-6 .bbt-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
}

.bbt-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.bbt-gallery.bbt-ratio-square .bbt-gallery-item {
    aspect-ratio: 1/1;
}

.bbt-gallery.bbt-ratio-portrait .bbt-gallery-item {
    aspect-ratio: 3/4;
}

.bbt-gallery.bbt-ratio-landscape .bbt-gallery-item {
    aspect-ratio: 4/3;
}

.bbt-gallery.bbt-ratio-wide .bbt-gallery-item {
    aspect-ratio: 16/9;
}

.bbt-gallery-image {
    width: 100%;
    height: 100%;
}

.bbt-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bbt-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bbt-gallery-item:hover .bbt-gallery-overlay {
    opacity: 1;
}

/* Hover Effects */
.bbt-hover-zoom .bbt-gallery-item:hover .bbt-gallery-image img {
    transform: scale(1.1);
}

.bbt-hover-blur .bbt-gallery-item:hover .bbt-gallery-image img {
    filter: blur(3px);
}

/* ========================================
   TESTIMONIALS WIDGET
   ======================================== */
.bbt-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bbt-testimonial-quote {
    color: #f5a623;
    margin-bottom: 15px;
}

.bbt-testimonial-rating {
    margin-bottom: 15px;
}

.bbt-star {
    color: #e5e7eb;
    font-size: 18px;
}

.bbt-star.filled {
    color: #f5a623;
}

.bbt-testimonial-content {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}

.bbt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bbt-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bbt-author-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a623, #ffb84d);
    color: #1e3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.bbt-author-name {
    display: block;
    font-weight: 600;
    color: #1e3a5f;
}

.bbt-author-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
}

/* Slider Style */
.bbt-testimonials-slider .bbt-testimonial-slider {
    padding: 20px 0 60px;
}

/* Grid Style */
.bbt-testimonials-grid .bbt-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* ========================================
   NEWSLETTER WIDGET
   ======================================== */
.bbt-newsletter-widget {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.bbt-newsletter-bg-gradient {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #fff;
}

.bbt-newsletter-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

.bbt-newsletter-desc {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 25px;
}

.bbt-newsletter-inline .bbt-newsletter-input-wrap {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.bbt-newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
}

.bbt-newsletter-btn {
    padding: 16px 30px;
    background: #f5a623;
    color: #1e3a5f;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bbt-newsletter-btn:hover {
    background: #ffb84d;
    transform: translateY(-2px);
}

.bbt-newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}