/* 
 * BURLEIGH TRAVEL 2026 — PREMIUM MODERNIZATION CSS (DESIGN RECOVERY)
 */

:root {
    --navy: #0e2554;
    --orange: #f26f21;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

/* 1. GLOBAL RESETS & GAP REMOVAL */
html,
body {
    overflow-x: hidden;
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--navy);
    margin: 0 !important;
    padding: 0 !important;
}



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

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

/* 2. GRID & CONTAINER OVERRIDES */
.outer-container,
.grid_12,
.grid_9,
.grid_8,
.grid_4,
.grid_3 {
    width: auto !important;
    max-width: none !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

#main-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-header {
    margin-top: 0 !important;
}



/* 2. RECONSTRUCTED HEADER STYLES */
.brand-bar {
    background: var(--navy) !important;
    color: white !important;
}

.brand-bar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.brand-bar .nav-link:hover {
    color: var(--orange) !important;
}

.brand-bar img {
    filter: brightness(1.2);
}

/* Sports Nav Styling */
.sports-nav-bar {
    background: #071536 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sports-nav-bar .nav-link {
    color: white !important;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    padding: 12px 14px !important;
    min-width: max-content !important;
}

/* SUBMENU HOVER FIX */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 0;
    }
}

/* 3. FOOTER CONTRAST (Absolute Priority) */
.bt-footer,
.bt-footer section,
.bt-footer div,
.bt-footer p,
.bt-footer span,
.bt-footer li {
    color: #ffffff !important;
}

.bt-footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

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

.bt-footer-heading,
.bt-footer h5 {
    color: var(--orange) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
    padding-bottom: 5px;
}

/* 4. PREMIUM CTA & NEWSLETTER BAR */
.bt-premium-cta-bar {
    background: linear-gradient(135deg, #071536 0%, #0e2554 100%);
    padding: 50px 40px;
    margin: 40px 0 0 0;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: #fff;
    clear: both;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.bt-premium-cta-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 111, 33, 0.15) 0%, rgba(242, 111, 33, 0) 70%);
    border-radius: 50%;
}

.bt-premium-cta-bar .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Custom separator line */
.bt-premium-cta-bar .cta-grid::after {
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    height: 80%;
    position: absolute;
    left: 50%;
    top: 10%;
}

.bt-premium-cta-bar h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.bt-premium-cta-bar p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 90%;
}

/* Button Styling */
.bt-premium-cta-bar .premium-action-btn {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px;
    border: 2px solid var(--orange);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(242, 111, 33, 0.3);
}

.bt-premium-cta-bar .premium-action-btn:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 111, 33, 0.4);
}

/* Unified Form Layout */
.bt-premium-cta-bar .form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bt-premium-cta-bar .form-inputs input[type="email"],
.bt-premium-cta-bar .form-inputs button {
    grid-column: 1 / -1;
}

.bt-premium-cta-bar .form-inputs input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.bt-premium-cta-bar .form-inputs input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.12);
}

.bt-premium-cta-bar .form-inputs input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bt-premium-cta-bar .form-inputs button {
    margin-top: 10px;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .bt-premium-cta-bar .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bt-premium-cta-bar .cta-grid::after {
        display: none;
    }
}

/* STICKY NAV REFINEMENT */
.fixed-top#main-nav-bar {
    top: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* 5. TESTIMONIAL SECTION (Shared from Homepage) */
.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;
}

.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;
}

.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);
}

.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;
}