/* ============================================================
   BURLEIGH TRAVEL — DEDICATED HOMEPAGE STYLESHEET
   homepage.css  |  Only loaded on front-page.php
   ============================================================ */

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}



.bt-newsletter-form {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
}

.bt-cbar-newsletter {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.bt-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

/* Hero image and slider - FULL WIDTH */
.bt-hero-image-wrap,
.bt-hero-slider-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bt-hero-image-wrap {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100vw !important;
    max-width: 100% !important;
}

.bt-hero-slider-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.bt-hero-slide {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #0e2554;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    display: block !important;
    z-index: 1 !important;
}

/* Overlay for slider slides */
.bt-hero-slider-wrap .bt-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,37,84,0.2) 0%, rgba(14,37,84,0.4) 100%);
    z-index: 0;
}

.bt-hero-slider-wrap .bt-hero-overlay {
    position: absolute !important;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,37,84,0.3) 0%, rgba(14,37,84,0.1) 100%) !important;
    z-index: 1;
}

/* Hero Slider - CSS Animation-based approach for all slides visible */
.bt-hero-slider-wrap {
    position: relative !important;
}

@keyframes btSlideFade {
    0%, 45% { opacity: 1; z-index: 2; }
    50%, 95% { opacity: 0; z-index: 1; }
    100% { opacity: 1; z-index: 2; }
}

/* Alternative: Use flex with each slide taking full width, stacking them */
.bt-hero-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #0e2554;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
    z-index: 1 !important;
    flex-shrink: 0;
}

/* ================================================================
   FESTIVALS META INFO FIX
================================================================ */

/* Festivals Section - Meta info display */
.bt-fest-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0e2554;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bt-fest-meta span {
    color: #F26F21;
}

/* Ensure the festival meta section shows on frontend */
#fest-grid-container .bt-fest-item .bt-fest-meta {
    display: block !important;
    visibility: visible !important;
}

/* ================================================================
   HERO SLIDER FIX - Ensure all slides render properly
================================================================ */

.bt-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #0e2554;
}

.bt-hero-slider-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    isolation: isolate;
}

.bt-hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #0e2554 !important;
    z-index: 1 !important;
    transition: opacity 0.6s ease-in-out !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
}

/* Ensure slide content is above background */
.bt-hero-slide .bt-hero-overlay,
.bt-hero-slide .bt-hero-slide-content {
    position: relative;
    z-index: 2;
}

/* Overlay gradient for readability */
.bt-hero-slide > .bt-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        135deg, 
        rgba(14,37,84,0.4) 0%, 
        rgba(14,37,84,0.2) 50%, 
        rgba(14,37,84,0.4) 100%
    ) !important;
    z-index: 1;
    pointer-events: none;
}

.bt-hero-slide-content {
    position: relative;
    z-index: 3;
}

.bt-hero-overlay-text,
.bt-hero-video-overlay-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.bt-hero-overlay-text h2,
.bt-hero-video-overlay-text h2 {
    font-family: 'Permanent Marker', cursive !important;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
}

/* Hero Slider Navigation */
.bt-hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bt-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bt-hero-dot.active {
    background: #F26F21;
    transform: scale(1.2);
}

.bt-hero-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.bt-hero-arrow {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-hero-arrow:hover {
    background: #F26F21;
    border-color: #F26F21;
}

.bt-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
}

.bt-hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.bt-hero-slide-content h3 {
    font-family: 'Permanent Marker', cursive !important;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
}

.bt-hero-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bt-hero-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bt-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    animation: btFadeUp .9s ease both;
}

.bt-hero-title {
    color: #fff !important;
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin: 0 0 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}

.bt-hero-sub {
    color: rgba(255, 255, 255, .9) !important;
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 36px;
}

.bt-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll dots */
.bt-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.bt-scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    animation: dotFade 1.4s ease infinite;
}

.bt-scroll-indicator span:nth-child(2) {
    animation-delay: .2s;
}

.bt-scroll-indicator span:nth-child(3) {
    animation-delay: .4s;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.bt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: .04em;
    transition: all .28s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.bt-btn-cta {
    background: var(--orange);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(240, 119, 32, .35);
}

.bt-btn-cta:hover {
    background: #ff8f35;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(240, 119, 32, .45);
}

.bt-btn-outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .7);
}

.bt-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

.bt-btn-outline-navy {
    background: transparent;
    color: var(--navy) !important;
    border-color: var(--navy);
}

.bt-btn-outline-navy:hover {
    background: var(--navy);
    color: #fff !important;
}

.bt-btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.bt-btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-3px);
}

.bt-btn-sm {
    padding: 8px 18px;
    font-size: 12px;
    background: var(--orange);
    color: #fff !important;
}

.bt-btn-sm:hover {
    background: #ff8f35;
}

/* ── SPORT ICON BAR ───────────────────────────────────────── */
.bt-sport-bar {
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    padding: 20px 0;
    box-shadow: 0 4px 24px rgba(14, 36, 66, .08);
    position: relative;
    z-index: 10;
}

.bt-sport-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    text-transform: uppercase;
    margin-right: 20px;
    letter-spacing: .06em;
    white-space: nowrap;
}

.bt-sports-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.bt-sports-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform .25s ease;
}

.bt-sports-list li a:hover {
    transform: translateY(-4px);
}

.bt-sports-list li img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.bt-sports-list li span {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── SHARED SECTION STYLES ────────────────────────────────── */
.bt-section {
    padding: 80px 0;
}

.bt-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
}

.bt-section-title {
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 800 !important;
    color: var(--navy) !important;
    text-transform: uppercase;
    margin: 0 0 40px;
    line-height: 1.05;
    position: relative;
}

.bt-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-top: 12px;
}

.bt-center-title {
    text-align: center;
}

.bt-center-title::after {
    margin: 12px auto 0;
}

/* ── INTRO SECTION ────────────────────────────────────────── */
.bt-intro-section {
    background: var(--light-bg);
}

.bt-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.bt-intro-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal);
}

.bt-intro-body p {
    margin-bottom: 20px;
    color: #4a5568;
}

.bt-intro-body strong,
.bt-intro-body b {
    color: #0e2554;
    font-weight: 700;
}

.bt-intro-body h2,
.bt-intro-body h3 {
    color: var(--navy) !important;
    font-family: var(--font-display) !important;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bt-intro-body h3 {
    font-size: 1.4rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.bt-intro-body h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #f26f21;
    border-radius: 2px;
}

.bt-intro-body h3 strong {
    font-weight: 800;
}

.bt-intro-body img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(14, 37, 84, 0.08);
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bt-intro-body img:hover {
    transform: scale(1.01);
}

.bt-intro-body ul {
    margin: 0 0 24px 20px;
    padding: 0;
    list-style: none;
}

.bt-intro-body ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: #4a5568;
}

.bt-intro-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #f26f21;
    font-weight: bold;
}

.bt-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bt-stat-card {
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bt-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
}

.bt-stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.bt-stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .8;
    margin-top: 6px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.bt-testimonials-section {
    background: var(--navy);
    padding: 80px 0;
}

.bt-testimonials-section .bt-section-title {
    color: #fff !important;
}

.bt-testimonials-section .bt-section-title::after {
    background: var(--orange);
}

.bt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* HP Sidebar Testimonials */
.bt-hp-testimonials {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(14, 36, 66, .1);
}

.bt-testimonials-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px;
    text-transform: uppercase;
}

.bt-testimonial-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    margin-bottom: 20px;
}

.bt-stars {
    color: var(--orange);
    font-size: 16px;
    margin-bottom: 12px;
}

.bt-testimonial-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
    font-style: italic;
    margin: 0 0 12px;
}

.bt-testimonial-author {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--navy);
    margin: 0;
}

.bt-testimonial-author strong {
    font-weight: 700;
}

.bt-testimonials-link {
    display: inline-block;
    color: var(--orange);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;
}

.bt-testimonials-link:hover {
    text-decoration: underline;
}

/* ── BLOG SECTION ─────────────────────────────────────────── */
.bt-blog-section {
    background: #fff;
}

.bt-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.bt-blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 36, 66, .07);
    transition: all .3s ease;
    background: #fff;
    border: 1px solid rgba(14, 36, 66, .06);
}

.bt-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(14, 36, 66, .14);
}

.bt-blog-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.bt-blog-card:hover .bt-blog-thumb img {
    transform: scale(1.05);
}

.bt-blog-body {
    padding: 24px;
}

.bt-blog-date {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.bt-blog-title {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin: 8px 0 12px !important;
    text-transform: none !important;
    line-height: 1.3 !important;
}

.bt-blog-title::after {
    display: none !important;
}

.bt-blog-title a {
    color: inherit !important;
    text-decoration: none;
}

.bt-blog-title a:hover {
    color: var(--orange) !important;
}

.bt-blog-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.bt-center-action {
    text-align: center;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.bt-cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.bt-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/rugby.png') no-repeat right center / 300px;
    opacity: .04;
    pointer-events: none;
    z-index: 0;
}

.bt-cta-banner .bt-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.bt-cta-content h2 {
    font-family: var(--font-display) !important;
    font-size: clamp(24px, 3.5vw, 40px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
}

.bt-cta-content h2::after {
    display: none;
}

.bt-cta-content p {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    margin: 0;
}

.bt-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes btFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes dotFade {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .bt-sport-bar {
        display: none !important;
    }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
    .bt-hero-wrapper {
        height: auto;
        min-height: unset;
        aspect-ratio: 16/9;
    }

    .bt-two-col {
        grid-template-columns: 1fr;
    }

    .bt-blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bt-cta-banner .bt-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .bt-hero-wrapper {
        height: auto;
        min-height: unset;
        aspect-ratio: 16/9;
    }

    .bt-fest-50 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .bt-blog-grid {
        grid-template-columns: 1fr;
    }

    .bt-hero-actions {
        flex-direction: column;
    }

    .bt-stat-card .bt-stat-number {
        font-size: 32px;
    }
}

/* ================================================================
   BURLEIGH TRAVEL — PROMO BANNER (Section 2.5)
================================================================ */

.bt-promo-banner {
    display: block;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-top: 3px solid rgb(242, 111, 33) !important;
}

.bt-promo-bg {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bt-promo-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    animation: promoBgSlide 1s ease both;
}

@keyframes promoBgSlide {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 0.35;
    }
}

.bt-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, var(--navy, #1B325A) 55%, rgba(27, 50, 90, 0.7) 100%);
    z-index: 1;
}

.bt-promo-banner .bt-inner {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bt-promo-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange, #f26f21);
    margin-bottom: 14px;
}

.bt-promo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange, #f26f21);
    animation: dotPulse 1.4s ease infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.bt-promo-headline {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff !important;
    margin: 0 0 18px;
}

.bt-promo-headline::after {
    display: none !important;
}

.bt-promo-highlight {
    color: var(--orange, #f26f21);
}

.bt-promo-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    max-width: 440px;
}

.bt-promo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.bt-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.bt-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange, #f26f21);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 30px;
    border-radius: 4px;
    transition: background 0.25s, transform 0.25s;
    box-shadow: 0 6px 20px rgba(242, 111, 33, 0.35);
}

.bt-promo-banner:hover .bt-promo-btn {
    background: #ff8f35;
    transform: translateY(-3px);
}

/* Right column — stats grid */
.bt-promo-right {
    padding-left: 40px;
}

.bt-promo-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.bt-promo-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: background 0.25s;
}

.bt-promo-banner:hover .bt-promo-stat-card {
    background: rgba(255, 255, 255, 0.12);
}

.bt-promo-stat-number {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: var(--orange, #f26f21);
    line-height: 1;
}

.bt-promo-stat-number span {
    font-size: 22px;
}

.bt-promo-stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

/* Era / teaser strip */
.bt-promo-era-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 20px;
}

.bt-promo-era-left {
    flex: 1;
}

.bt-promo-era-badge {
    display: inline-block;
    background: var(--orange, #f26f21);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.bt-promo-era-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.bt-promo-era-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #f26f21);
    flex-shrink: 0;
    transition: background 0.25s;
}

.bt-promo-banner:hover .bt-promo-era-arrow {
    background: var(--orange, #f26f21);
    color: #fff;
}

@media (max-width: 767px) {
    .bt-promo-bg {
        min-height: auto;
    }

    .bt-promo-banner .bt-inner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .bt-promo-headline {
        font-size: 30px;
    }
}


/* ================================================================
   BURLEIGH TRAVEL — TOUR CATEGORY CARDS (Section 2.7)
================================================================ */

.bt-tour-cats-section {
    padding: 40px 0 60px;
    background: #fff;
}

.bt-tour-cat-col {
    margin-bottom: 28px;
}

.bt-tour-cat-card {
    border-radius: 12px;
    height: 190px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none !important;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bt-tour-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.bt-tour-cat-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(14, 36, 66, 0.92) 100%);
    z-index: 1;
    border-radius: 12px;
}

.bt-tour-cat-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    transition: transform 0.4s ease;
    z-index: 0;
}

.bt-tour-cat-card:hover .bt-tour-cat-bg {
    transform: scale(1.05);
}

.bt-tour-cat-body {
    z-index: 2;
    padding: 24px 28px;
}

.bt-tour-cat-title {
    font-family: var(--font-display) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.bt-tour-cat-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange, #f26f21);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s;
}

.bt-tour-cat-card:hover .bt-tour-cat-arrow {
    background: #ff8f35;
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .bt-tour-cat-card {
        height: 190px;
    }
}


/* ================================================================
   BURLEIGH TRAVEL — HOMEPAGE ENHANCEMENTS v3.0
   Testimonials Grid | Why Choose (6-card) | Travel With Confidence
   Contact Bar Improvements
================================================================ */

/* ---- WHY CHOOSE: 6-column grid ---- */
.bt-why-header {
    text-align: center;
    margin-bottom: 48px;
}

.bt-why-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-top: 10px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.bt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .bt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bt-why-grid {
        grid-template-columns: 1fr;
    }
}

.bt-why-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.bt-why-card:hover {
    transform: translateY(-5px);
    background: rgba(242, 111, 33, 0.12);
    border-color: rgba(242, 111, 33, 0.4);
}

.bt-why-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(242, 111, 33, 0.15);
    border: 2px solid rgba(242, 111, 33, 0.3);
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-why-icon {
    font-size: 2rem;
}

.bt-why-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bt-why-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
}

/* ---- TESTIMONIALS SECTION ---- */
.bt-testimonials-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.bt-testi-header {
    text-align: center;
    margin-bottom: 50px;
}

.bt-testi-header .bt-section-title {
    color: #0e2554 !important;
}

.bt-testi-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-top: 10px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.bt-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 44px;
}

@media (max-width: 900px) {
    .bt-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bt-testi-grid {
        grid-template-columns: 1fr;
    }
}

.bt-testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(14, 37, 84, 0.08);
    position: relative;
    border-top: 4px solid #f26f21;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bt-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(14, 37, 84, 0.14);
}

.bt-testi-quote-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: #f26f21;
    font-family: Georgia, serif;
    margin-bottom: 4px;
    opacity: 0.9;
}

.bt-stars {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.bt-testi-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.bt-testi-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bt-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0e2554;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bt-testi-name {
    display: block;
    font-size: 0.9rem;
    color: #0e2554;
}

.bt-testi-location {
    font-size: 0.8rem;
    color: #888;
}

.bt-testi-cta {
    text-align: center;
}

.bt-btn-outline-navy {
    background: transparent;
    border: 2px solid #0e2554;
    color: #0e2554;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, color 0.25s;
}

.bt-btn-outline-navy:hover {
    background: #0e2554;
    color: #fff;
}

/* ---- TRAVEL WITH CONFIDENCE (Accreditations) ---- */
.bt-partners-section {
    background: #0e2554;
    padding: 80px 0;
}

.bt-partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.bt-partners-sub {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 12px auto 0 auto;
    font-size: 1.05rem;
}

.bt-confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .bt-confidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bt-confidence-grid {
        grid-template-columns: 1fr;
    }
}

.bt-confidence-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.bt-confidence-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.bt-confidence-badge {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bt-confidence-badge img {
    filter: brightness(1.1);
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
}

.bt-confidence-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bt-confidence-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin-bottom: 18px;
}

.bt-confidence-link {
    color: #f26f21;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.bt-confidence-link:hover {
    border-color: #f26f21;
    color: #f26f21;
}

/* ---- CONTACT BAR IMPROVEMENTS ---- */
.bt-contact-bar {
    background: #081b3a;
    padding: 50px 0;
    color: #fff;
}

.bt-cbar-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    flex-wrap: wrap;
}

.bt-cbar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.bt-cbar-contact {
    justify-content: center;
}

.bt-cbar-copy {
    flex: 1;
}

.bt-cbar-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.bt-cbar-text strong {
    color: #f26f21;
    font-weight: 800;
}

.bt-cbar-btn {
    white-space: nowrap;
}

.bt-cbar-newsletter {
    justify-content: center;
    gap: 20px;
}

.bt-cbar-newsletter-icon {
    flex-shrink: 0;
}

.bt-cbar-newsletter-label {
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.bt-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.bt-newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    padding: 10px 16px;
    font-size: 0.88rem;
    min-width: 130px;
    flex: 1;
    font-family: 'Barlow', sans-serif;
}

.bt-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bt-newsletter-form input:focus {
    outline: none;
    border-color: #f26f21;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .bt-cbar-row {
        flex-direction: column;
        text-align: center;
    }

    .bt-newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .bt-newsletter-form input {
        width: 100%;
    }
}

/* Fix: Why Choose section needs explicit dark background so white text is visible */
.bt-why-section {
    background: #0e2554;
    padding: 80px 0;
}


/* ================================================================
   SPORT BAR — PREMIUM REDESIGN
================================================================ */
.bt-sport-bar {
    background: linear-gradient(135deg, #0e2554 0%, #1a3a7a 100%) !important;
    border-bottom: 3px solid #f26f21 !important;
    padding: 0 !important;
    box-shadow: 0 4px 20px rgba(14, 37, 84, .35) !important;
}

.bt-sport-bar .bt-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.bt-sport-label {
    color: #f26f21 !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    letter-spacing: 1.5px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif !important;
}

.bt-sports-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 4px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1;
    justify-content: space-between;
}

.bt-sports-list li a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    text-decoration: none !important;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.bt-sports-list li a:hover {
    background: rgba(242, 111, 33, 0.12) !important;
    border-color: rgba(242, 111, 33, 0.3);
    transform: translateY(-3px) !important;
}

.bt-sports-list li img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    transition: filter 0.25s, transform 0.25s;
}

.bt-sports-list li a:hover img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(746%) hue-rotate(348deg) brightness(103%) contrast(97%) !important;
}

.bt-sports-list li span {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    font-family: 'Barlow', sans-serif !important;
    white-space: nowrap;
}

.bt-sports-list li a:hover span {
    color: #f26f21 !important;
}

@media (max-width: 768px) {
    .bt-sports-list {
        justify-content: center;
        gap: 2px !important;
    }

    .bt-sports-list li a {
        padding: 8px 10px;
    }

    .bt-sports-list li img {
        width: 36px !important;
        height: 36px !important;
    }

    .bt-sports-list li span {
        font-size: 9px !important;
    }
}

/* ================================================================
   WHY CHOOSE + TRAVEL WITH CONFIDENCE — FORCE CORRECT BACKGROUNDS
================================================================ */
section.bt-why-section,
.bt-why-section {
    background: #0e2554 !important;
    padding: 80px 0 !important;
}

.bt-why-subtitle {
    color: rgba(255, 255, 255, 0.75) !important;
}

.bt-why-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.bt-why-title {
    color: #FFD700 !important;
}

.bt-why-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

section.bt-partners-section,
.bt-partners-section {
    background: #0b1c3f !important;
    padding: 80px 0 !important;
}

.bt-confidence-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.bt-confidence-title {
    color: #ffffff !important;
}

.bt-confidence-text {
    color: rgba(255, 255, 255, 0.68) !important;
}

/* ================================================================
   CONTACT + NEWSLETTER BAR — WHITE BACKGROUND
================================================================ */
section.bt-contact-bar,
.bt-contact-bar {
    background: #ffffff !important;
    padding: 50px 0 !important;
    color: #0e2554 !important;
    border-top: 3px solid #f26f21;
    border-bottom: 3px solid #f26f21;
}

.bt-cbar-text {
    color: #333 !important;
}

.bt-cbar-text strong {
    color: #f26f21 !important;
}

.bt-cbar-newsletter-label {
    color: #0e2554 !important;
}

.bt-cbar-divider {
    background: rgba(14, 37, 84, 0.12) !important;
}

.bt-newsletter-form input {
    background: #f5f7fa !important;
    border: 1px solid #ddd !important;
    color: #0e2554 !important;
}

.bt-newsletter-form input::placeholder {
    color: #999 !important;
}

.bt-newsletter-form input:focus {
    border-color: #f26f21 !important;
    background: #fff !important;
}

/* ================================================================
   PER-SECTION TITLE COLORS (scoped so sections don't bleed into each other)
================================================================ */

/* Default bt-section-title on LIGHT backgrounds (intro, blog, faq) */
.bt-intro-section .bt-section-title,
.bt-blog-section .bt-section-title,
.bt-faq-section .bt-section-title {
    color: #0e2554 !important;
}

/* Intro section heading uses its own class now */
.bt-intro-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0e2554;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* DARK section titles stay white */
.bt-why-section .bt-section-title,
.bt-why-section .bt-center-title,
.bt-partners-section .bt-section-title,
.bt-partners-section .bt-center-title,
.bt-testimonials-section .bt-section-title,
.bt-testimonials-section .bt-center-title {
    color: #ffffff !important;
}

.bt-testimonials-section .bt-section-title {
    color: #0e2554 !important;
}

.bt-inline-testimonials {
    margin-top: 32px;
    background: #fff;
    border: 1px solid #ebeef5;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(14, 37, 84, 0.04);
}

.bt-inline-testi-heading {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0e2554;
    margin: 0 0 20px 0;
    font-family: 'Barlow Condensed', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bt-inline-testi-heading::before {
    content: '';
    display: block;
    width: 6px;
    height: 18px;
    background: #f26f21;
    border-radius: 2px;
}

.bt-inline-testi-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bt-inline-testi-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f8f9fc;
    border-radius: 8px;
    padding: 16px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bt-inline-testi-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 37, 84, 0.08);
}

.bt-inline-testi-quote {
    font-size: 2.8rem;
    line-height: 0.8;
    color: #f26f21;
    font-family: Georgia, serif;
    flex-shrink: 0;
    opacity: 0.4;
    margin-top: -2px;
}

.bt-inline-testi-content {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.bt-inline-testi-content p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: #555 !important;
}

.bt-inline-testi-content p strong,
.bt-inline-testi-content p b {
    display: block;
    margin-top: 8px !important;
    color: #0e2554 !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bt-testi-more-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f26f21;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    transition: color 0.2s;
}

.bt-testi-more-link:hover {
    color: #0e2554;
}

/* Certs below testimonials in right column */
.bt-intro-right-col .bt-intro-certs {
    margin-top: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 24px;
    background: #f8f9fc;
    border: 1px solid #ebeef5;
    border-radius: 12px;
    position: relative;
}

.bt-intro-certs::before {
    content: 'TRUSTED BY';
    position: absolute;
    top: -9px;
    left: 16px;
    background: #fff;
    padding: 0 8px;
    font-size: 11px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: #a0a6b5;
    letter-spacing: 0.5px;
}

.bt-intro-right-col .bt-intro-certs a {
    display: inline-block;
    transition: transform 0.25s ease;
}

.bt-intro-right-col .bt-intro-certs a:hover {
    transform: translateY(-2px);
}

.bt-intro-right-col .bt-intro-certs img {
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.bt-intro-right-col .bt-intro-certs img:hover {
    filter: grayscale(0%) opacity(1);
}

/* SPORT BAR ICONS — Force white so they show on dark navy background */
.bt-sport-bar .bt-sports-list li a img,
.bt-sport-bar ul.bt-sports-list li a img,
div.bt-sport-bar img {
    filter: brightness(0) invert(1) !important;
    -webkit-filter: brightness(0) invert(1) !important;
}

.bt-sport-bar .bt-sports-list li a:hover img,
.bt-sport-bar ul.bt-sports-list li a:hover img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(746%) hue-rotate(348deg) brightness(103%) contrast(97%) !important;
    -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(746%) hue-rotate(348deg) brightness(103%) contrast(97%) !important;
}

/* CRITICAL FIX: Sport Bar Icon Visibility */
/* Reset original mix-blend-mode: multiply which hides white icons on dark backgrounds */
.bt-sport-bar .bt-sports-list li img,
.bt-sports-list li img {
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Re-apply the white filter strongly */
.bt-sport-bar .bt-sports-list li a img {
    filter: brightness(0) invert(1) !important;
    -webkit-filter: brightness(0) invert(1) !important;
}

/* Ensure labels are properly visible */
.bt-sport-bar .bt-sports-list li span {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Hide redundant FAQ title inside the shortcode output on the homepage only */
.home .bt-faq-container h3:has(.custom-faq-section),
.home .bt-faq-container h3:contains("Frequently Asked Questions") {
    display: none !important;
}

/* More specific selector based on user's exact code snippet */
.home .bt-faq-container h3[style*="margin-bottom:20px"] {
    display: none !important;
}

/* Refined: Hide redundant FAQ title inside the shortcode output on the homepage only */
.home .bt-faq-container h3[style*="margin-bottom:20px"] {
    display: none !important;
}

/* Fallback: hiding the specific div if the h3 selector is too broad */
.home .bt-faq-container .custom-faq-section {
    display: none !important;
}

/* ===================================================
   FAQ Plugin Universal Overrides (Premium Design)
====================================================== */

/* Base Container & Typography */
body div.wpsm_panel-group[id^="wpsm_accordion_"] {
    font-family: 'Barlow', sans-serif !important;
    background: transparent !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Individual Accordion Panel */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel {
    background-color: var(--bt-navy, #1B325A) !important;
    border: none !important;
    border-radius: 4px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    transition: transform 0.2s ease !important;
}

body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel:hover {
    transform: translateY(-2px) !important;
}

/* Accordion Heading (Question) */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-heading {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Question Text & Link */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-title a {
    display: flex !important;
    align-items: center !important;
    padding: 16px 24px !important;
    color: #ffffff !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    background: transparent !important;
}

/* Hover State */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-title a:hover {
    color: var(--bt-orange, #f26f21) !important;
}

/* Plus/Minus Icons */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-title a i,
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-title a .ac_open_cl_icon {
    font-size: 1rem !important;
    color: var(--bt-orange, #f26f21) !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
}

/* Active Icon Color */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-title a:not(.collapsed) .ac_open_cl_icon {
    color: #ffffff !important;
}

/* Accordion Body (Answer) */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-body {
    padding: 0 24px 20px 24px !important;
    background-color: var(--bt-navy, #1B325A) !important;
    color: #e0e0e0 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    border-top: none !important;
}

/* P tags inside answer */
body div.wpsm_panel-group[id^="wpsm_accordion_"] .wpsm_panel-body p {
    color: #e0e0e0 !important;
    margin-bottom: 0 !important;
}

/* ================================================================
   SPINNING 2027 BADGE (Hero Overlay)
================================================================ */

.bt-hero-overlay {
    background: transparent !important;
}

.bt-spinning-badge-wrap {
    position: absolute;
    bottom: 15%;
    right: 5%;
    z-index: 10;
}

@media (max-width: 767px) {
    .bt-spinning-badge-wrap {
        bottom: 8%;
        right: 5%;
    }
}

.bt-spinning-badge {
    display: block;
    width: clamp(120px, 20vw, 300px);
    height: clamp(120px, 20vw, 300px);
    position: relative;
    text-decoration: none !important;
}

@media (max-width: 767px) {
    .bt-spinning-badge {
        width: 120px;
        height: 120px;
    }
}

.bt-spinning-text-svg {
    width: 100%;
    height: 100%;
    animation: btSpinCW 12s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes btSpinCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bt-spinning-badge-centre {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0E2554;
    border-radius: 50%;
    width: 60%;
    height: 60%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease;
}

.bt-spinning-badge:hover .bt-spinning-badge-centre {
    transform: scale(1.06);
}

.bt-spinning-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #F26F21;
    line-height: 1;
    display: block;
}

@media (max-width: 767px) {
    .bt-spinning-year {
        font-size: 18px;
    }
}

.bt-spinning-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .bt-spinning-label {
        font-size: 10px;
    }
}


/* ================================================================
   6-BOX TOUR CATEGORY GRID
================================================================ */

.bt-tour-cats-section {
    padding: 40px 0 60px;
    background: #fff;
}

.bt-tour-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1300px) {
    .bt-tour-cats-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .bt-tour-cats-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bt-tour-cats-grid {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

.bt-tour-cat-card {
    position: relative;
    border-radius: 12px;
    height: 190px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none !important;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .bt-tour-cat-card {
        height: 190px;
    }
}

.bt-tour-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.bt-tour-cat-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(14, 36, 66, 0.92) 100%);
    z-index: 1;
    border-radius: 12px;
}

.bt-tour-cat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    transition: transform 0.4s ease;
    z-index: 0;
}

.bt-tour-cat-card:hover .bt-tour-cat-bg {
    transform: scale(1.06);
}

.bt-tour-cat-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bt-tour-cat-title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 !important;
    line-height: 1.25 !important;
    flex: 1;
}

.bt-tour-cat-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0E2554;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: 12px;
    transition: background 0.25s, transform 0.25s;
}

.bt-tour-cat-card:hover .bt-tour-cat-arrow {
    background: #F26F21;
    color: #fff;
    transform: translateX(4px);
}


/* ================================================================
   TESTIMONIALS SECTION
================================================================ */

.bt-testi-section {
    background: #0E2554;
    padding: 70px 0;
}

.bt-testi-header {
    text-align: center;
    margin-bottom: 48px;
}

.bt-testi-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.bt-testi-sub {
    font-size: 1.05rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Desktop grid */
.bt-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* d-md-grid workaround (Bootstrap uses d-none d-md-flex, we override) */
@media (min-width: 768px) {
    .bt-testi-grid.d-none.d-md-grid {
        display: grid !important;
    }
}

.bt-testi-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.bt-testi-stars {
    font-size: 20px;
    color: #0E2554;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.bt-testi-quote {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #333;
    font-style: italic;
    margin-bottom: 18px;
}

.bt-testi-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0E2554;
    text-transform: uppercase;
}

.bt-testi-club {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* Carousel */
.bt-testi-carousel-wrap {
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.bt-testi-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 8px 4px 20px;
}

.bt-testi-carousel::-webkit-scrollbar {
    display: none;
}

.bt-testi-slide {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
}

.bt-testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 8px;
}

.bt-testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.bt-testi-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* CTA button */
.bt-testi-cta {
    text-align: center;
    margin-top: 36px;
}

.bt-btn-testi {
    background: #fff;
    color: #0E2554 !important;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    transition: background 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bt-btn-testi:hover {
    background: #f0f0f0;
    color: #0E2554 !important;
}


/* ================================================================
   2026 FESTIVALS LISTING
================================================================ */

.bt-festivals-section {
    background: #f8f9fa;
    padding: 70px 0 60px;
}

.bt-fest-header {
    margin-bottom: 40px;
}

.bt-fest-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: #0E2554;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.bt-fest-sub {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.bt-fest-container {
    margin-top: 20px;
}

.bt-fest-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 3px solid #F26F21;
    transition: box-shadow 0.25s;
}

.bt-fest-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bt-fest-img {
    flex: 0 0 280px;
    width: 280px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.bt-fest-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bt-fest-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.bt-fest-item:hover .bt-fest-img img {
    transform: scale(1.04);
}

.bt-fest-body {
    flex: 1;
}

.bt-fest-name {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0E2554;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bt-fest-name.fun-font {
    font-family: 'Permanent Marker', cursive !important;
    font-size: 2rem !important;
    text-transform: none;
    color: #0E2554;
}

.bt-fest-name:hover {
    color: #F26F21;
}

.bt-fest-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0e2554;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bt-fest-meta span {
    color: #F26F21;
}

.bt-fest-desc {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}

.bt-btn-fest {
    background: #0E2554;
    color: #fff !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none !important;
    display: inline-block;
    transition: background 0.25s;
}

.bt-btn-fest:hover {
    background: #F26F21;
    color: #fff !important;
}

/* Responsive festivals */
@media (max-width: 767px) {
    .bt-fest-item {
        flex-direction: column;
        padding: 20px;
    }

    .bt-fest-img {
        flex: none;
        width: 100%;
    }

    .bt-fest-img img {
        height: 180px;
    }
}