/**
 * Qulbay Child Theme — Home Page Styles
 * RUN_ID: QLB-HOMEPAGE-SKIN-02
 * Version: 3.1.0
 * Source: qulbay-home-page-prototype.html.html (exact copy)
 *
 * NO inline styles. All rules scoped to body.qlb-home.
 */

/* ==============================================
   TT25 PARENT THEME OVERRIDE — MUST BE FIRST
   Kills TwentyTwentyFive + wp-block-library conflicts.
   ============================================== */
body.qlb-home {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-weight: 400 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #111827 !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.qlb-home *,
body.qlb-home *::before,
body.qlb-home *::after {
    box-sizing: border-box;
}
body.qlb-home h1,
body.qlb-home h2,
body.qlb-home h3,
body.qlb-home h4,
body.qlb-home h5,
body.qlb-home h6 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
}
body.qlb-home a {
    text-decoration: none !important;
    text-underline-offset: unset !important;
}
body.qlb-home ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.qlb-home p {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}
body.qlb-home button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
/* Kill TT25 side padding */
body.qlb-home {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* Kill wp-site-blocks padding/margins */
body.qlb-home .wp-site-blocks {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
body.qlb-home :where(.wp-site-blocks) > *,
body.qlb-home .qlb-home-page > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}
/* Kill is-layout-constrained */
body.qlb-home .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: unset !important;
    margin-left: unset !important;
    margin-right: unset !important;
}
/* Hide TT25 site header and footer */
body.qlb-home .wp-site-blocks > header,
body.qlb-home .wp-site-blocks > footer,
body.qlb-home .site-header,
body.qlb-home .site-footer,
body.qlb-home #masthead,
body.qlb-home #colophon {
    display: none !important;
}
/* Nav above admin bar */
body.admin-bar.qlb-home .qlb-nav {
    top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar.qlb-home .qlb-nav {
        top: 46px;
    }
}
/* Suppress plugin ops elements on home */
body.qlb-home .qlb-ops-nav,
body.qlb-home .qlb-admin-header,
body.qlb-home .qlb-nav-dropdown {
    display: none !important;
}

/* ==============================================
   DESIGN TOKENS — exact from prototype
   ============================================== */
body.qlb-home {
    --green:        #25D366;
    --green-dark:   #128C7E;
    --purple:       #7B2FBE;
    --purple-dark:  #5e1fa0;
    --yellow:       #F5C518;
    --yellow-dark:  #d4a900;
    --black:        #0b0b0b;
    --white:        #ffffff;
    --gray-50:      #f9fafb;
    --gray-100:     #f3f4f6;
    --gray-200:     #e5e7eb;
    --gray-400:     #9ca3af;
    --gray-500:     #6b7280;
    --gray-700:     #374151;
    --gray-900:     #111827;
    --navy:         #0f172a;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-pill:  999px;
    --shadow-sm:    0 2px 8px  rgba(11,11,11,.06);
    --shadow-md:    0 8px 24px rgba(11,11,11,.10);
    --shadow-lg:    0 16px 48px rgba(11,11,11,.14);
    --max-w:        1200px;
    --sec-gap:      88px;
    --nav-h:        64px;
}

/* ==============================================
   BASE HELPERS
   ============================================== */
body.qlb-home img { display: block; max-width: 100%; }
body.qlb-home html { scroll-behavior: smooth; }

body.qlb-home .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography helpers */
body.qlb-home .eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}
body.qlb-home .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--black);
}
body.qlb-home .section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 10px;
    line-height: 1.6;
}

/* ==============================================
   BUTTONS — exact from prototype
   ============================================== */
body.qlb-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    transition: all .18s ease;
    white-space: nowrap;
    text-decoration: none !important;
}
body.qlb-home .btn-yellow {
    background: var(--purple) !important;
    color: var(--white) !important;
}
body.qlb-home .btn-yellow:hover {
    background: var(--purple-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}
body.qlb-home .btn-outline-white {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,.5);
}
body.qlb-home .btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}
body.qlb-home .btn-green {
    background: var(--green) !important;
    color: var(--white) !important;
}
body.qlb-home .btn-green:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}

/* ==============================================
   STICKY NAV
   ============================================== */
body.qlb-home .qlb-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--black);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: box-shadow .2s;
}
body.qlb-home .qlb-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
body.qlb-home .qlb-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
body.qlb-home .qlb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
body.qlb-home .qlb-logo-box {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.qlb-home .qlb-logo-box span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: .85rem;
    color: var(--white);
    letter-spacing: .05em;
}
body.qlb-home .qlb-logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: .06em;
}
body.qlb-home .qlb-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
body.qlb-home .qlb-nav-links a {
    color: rgba(255,255,255,.75) !important;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    transition: color .15s, background .15s;
    text-decoration: none !important;
}
body.qlb-home .qlb-nav-links a:hover {
    color: var(--yellow) !important;
    background: rgba(245,197,24,.08);
}
body.qlb-home .qlb-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
body.qlb-home .qlb-nav-right .btn {
    padding: 9px 20px;
    font-size: .88rem;
}
body.qlb-home .qlb-staff-link {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.4) !important;
    transition: color .15s;
    text-decoration: none !important;
}
body.qlb-home .qlb-staff-link:hover {
    color: rgba(255,255,255,.7) !important;
}
body.qlb-home .qlb-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}
body.qlb-home .qlb-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .2s;
}
body.qlb-home .qlb-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px 20px 24px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,.08);
}
body.qlb-home .qlb-mobile-menu.open { display: block; }
body.qlb-home .qlb-mobile-menu a {
    display: block;
    color: rgba(255,255,255,.8) !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-decoration: none !important;
}
body.qlb-home .qlb-mobile-menu a:last-child { border-bottom: none; }
body.qlb-home .qlb-mobile-menu .btn {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
}

/* ==============================================
   HERO
   ============================================== */
body.qlb-home .qlb-hero {
    min-height: calc(100vh - var(--nav-h));
    min-height: 560px;
    background:
        linear-gradient(135deg, rgba(11,11,11,.85) 0%, rgba(11,138,74,.4) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 60px 0 28vh 0;
}
body.qlb-home .qlb-hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 720px;
}
body.qlb-home .qlb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,197,24,.12);
    border: 1px solid var(--yellow);
    color: var(--yellow) !important;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
}
body.qlb-home .qlb-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.04;
    color: var(--white);
    text-transform: uppercase;
}
body.qlb-home .qlb-hero-title em {
    font-style: normal;
    color: var(--yellow);
}
body.qlb-home .qlb-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: rgba(255,255,255,.82);
    line-height: 1.55;
}
body.qlb-home .qlb-hero-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--yellow);
}
body.qlb-home .qlb-hero-price span {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
}
body.qlb-home .qlb-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
body.qlb-home .qlb-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
body.qlb-home .qlb-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9) !important;
    font-size: .8rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
}

/* ==============================================
   SERVICES
   ============================================== */
body.qlb-home .qlb-services {
    padding: var(--sec-gap) 0;
    background: var(--white);
}
body.qlb-home .qlb-section-header {
    margin-bottom: 48px;
}
body.qlb-home .qlb-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 900px) {
    body.qlb-home .qlb-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
body.qlb-home .qlb-service-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    cursor: pointer;
    transition: all .2s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.qlb-home .qlb-service-card:hover,
body.qlb-home .qlb-service-card:focus {
    border-color: var(--yellow);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
body.qlb-home .qlb-service-card.coming-soon {
    opacity: .6;
    cursor: default;
}
body.qlb-home .qlb-service-card.coming-soon:hover {
    transform: none;
    border-color: var(--gray-200);
    box-shadow: none;
}
body.qlb-home .qlb-card-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
body.qlb-home .qlb-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--green);
    color: var(--white);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
body.qlb-home .qlb-card-badge.yellow {
    background: var(--yellow);
    color: var(--black);
}
body.qlb-home .qlb-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
}
body.qlb-home .qlb-card-desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.55;
    flex: 1;
}
body.qlb-home .qlb-card-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11,138,74,.08);
    color: var(--green);
    font-weight: 800;
    font-size: .9rem;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}
body.qlb-home .qlb-card-cta {
    font-size: .85rem;
    font-weight: 700;
    color: var(--green) !important;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .15s;
    text-decoration: none !important;
}
body.qlb-home .qlb-service-card:hover .qlb-card-cta { gap: 8px; }

/* ==============================================
   BOOKING SECTION
   ============================================== */
body.qlb-home .qlb-booking-section {
    background: var(--gray-100);
    padding: var(--sec-gap) 0;
}
body.qlb-home .qlb-booking-section .section-title { color: var(--black); }
body.qlb-home .qlb-booking-inner {
    margin-top: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ==============================================
   WHY US + REVIEWS
   ============================================== */
body.qlb-home .qlb-why {
    padding: var(--sec-gap) 0;
    background: var(--navy);
    color: var(--white);
}
body.qlb-home .qlb-why .eyebrow { color: var(--yellow); }
body.qlb-home .qlb-why .section-title { color: var(--white); }
body.qlb-home .qlb-why-grid {
    display: grid;
    gap: 56px;
    margin-top: 48px;
}
@media (min-width: 900px) {
    body.qlb-home .qlb-why-grid { grid-template-columns: 55fr 45fr; }
}
body.qlb-home .qlb-feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}
body.qlb-home .qlb-feature-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
body.qlb-home .qlb-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(11,138,74,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
}
body.qlb-home .qlb-feature-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
body.qlb-home .qlb-feature-desc {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}
body.qlb-home .qlb-reviews-col { display: flex; flex-direction: column; gap: 16px; }
body.qlb-home .qlb-reviews-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}
body.qlb-home .qlb-reviews-rating {
    font-size: .85rem;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 16px;
}
body.qlb-home .qlb-review-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}
body.qlb-home .qlb-review-stars {
    color: var(--yellow);
    font-size: .95rem;
    margin-bottom: 8px;
}
body.qlb-home .qlb-review-quote {
    font-size: .88rem;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    border-left: 3px solid var(--yellow);
    padding-left: 12px;
    font-style: italic;
    margin-bottom: 12px;
}
body.qlb-home .qlb-review-meta {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
}
body.qlb-home .qlb-review-name {
    color: rgba(255,255,255,.8);
    font-weight: 800;
}

/* ==============================================
   AIRPORTS
   ============================================== */
body.qlb-home .qlb-airports {
    padding: var(--sec-gap) 0;
    background: var(--gray-50);
}
body.qlb-home .qlb-airports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (min-width: 600px) {
    body.qlb-home .qlb-airports-grid { grid-template-columns: repeat(4, 1fr); }
}
body.qlb-home .qlb-airport-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    transition: border-color .18s;
}
body.qlb-home .qlb-airport-card:hover { border-color: var(--green); }
body.qlb-home .qlb-airport-code {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}
body.qlb-home .qlb-airport-city {
    font-weight: 700;
    font-size: .95rem;
    color: var(--black);
    margin-top: 8px;
}
body.qlb-home .qlb-airport-name {
    font-size: .72rem;
    color: var(--gray-400);
    margin-top: 4px;
    line-height: 1.4;
}

/* ==============================================
   STATS BAR
   ============================================== */
body.qlb-home .qlb-stats {
    background: var(--green);
    padding: 56px 0;
    color: var(--white);
}
body.qlb-home .qlb-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
body.qlb-home .qlb-stat-item {
    text-align: center;
    padding: 0 24px;
}
body.qlb-home .qlb-stat-item + .qlb-stat-item {
    border-left: 1px solid rgba(255,255,255,.25);
}
body.qlb-home .qlb-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--yellow);
    display: block;
}
body.qlb-home .qlb-stat-label {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    margin-top: 6px;
    display: block;
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
body.qlb-home .qlb-testimonials {
    padding: var(--sec-gap) 0;
    background: var(--white);
}
body.qlb-home .qlb-testi-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}
@media (min-width: 768px) {
    body.qlb-home .qlb-testi-grid { grid-template-columns: repeat(3, 1fr); }
}
body.qlb-home .qlb-testi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.qlb-home .qlb-testi-card:hover { box-shadow: var(--shadow-md); }
body.qlb-home .qlb-testi-stars { color: var(--yellow); font-size: 1rem; }
body.qlb-home .qlb-testi-quote {
    font-size: .92rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--yellow);
    padding-left: 14px;
    flex: 1;
}
body.qlb-home .qlb-testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
body.qlb-home .qlb-testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
body.qlb-home .qlb-testi-name {
    font-weight: 700;
    font-size: .88rem;
    color: var(--gray-900);
}
body.qlb-home .qlb-testi-meta {
    font-size: .75rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ==============================================
   STAFF STRIP
   ============================================== */
body.qlb-home .qlb-staff-strip {
    background: var(--black);
    padding: 28px 0;
    text-align: center;
}
body.qlb-home .qlb-staff-strip p {
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 10px;
}
body.qlb-home .qlb-staff-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all .15s;
}
body.qlb-home .qlb-staff-btn:hover {
    border-color: rgba(255,255,255,.4);
    color: rgba(255,255,255,.85);
}

/* ==============================================
   FOOTER
   ============================================== */
body.qlb-home .qlb-footer {
    background: #080808;
    padding: 56px 0 28px;
    color: rgba(255,255,255,.6);
    border-top: 1px solid rgba(255,255,255,.05);
}
body.qlb-home .qlb-footer-top {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    body.qlb-home .qlb-footer-top { grid-template-columns: 1fr 2fr; }
}
body.qlb-home .qlb-footer-brand p {
    font-size: .88rem;
    margin-top: 12px;
    line-height: 1.6;
    max-width: 220px;
}
body.qlb-home .qlb-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
body.qlb-home .qlb-footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .82rem;
    color: var(--white);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
body.qlb-home .qlb-footer-col a {
    display: block;
    font-size: .85rem;
    color: rgba(255,255,255,.5) !important;
    margin-bottom: 8px;
    transition: color .15s;
    text-decoration: none !important;
}
body.qlb-home .qlb-footer-col a:hover { color: var(--yellow) !important; }
body.qlb-home .qlb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: .8rem;
    color: rgba(255,255,255,.3);
}
body.qlb-home .qlb-footer-bottom a {
    color: rgba(255,255,255,.3) !important;
    transition: color .15s;
    text-decoration: none !important;
}
body.qlb-home .qlb-footer-bottom a:hover { color: var(--yellow) !important; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 767px) {
    body.qlb-home .qlb-nav-links  { display: none; }
    body.qlb-home .qlb-staff-link { display: none; }
    body.qlb-home .qlb-hamburger  { display: flex; }
    body.qlb-home { --sec-gap: 56px; }
    body.qlb-home .qlb-stats-grid { grid-template-columns: 1fr; gap: 28px; }
    body.qlb-home .qlb-stat-item + .qlb-stat-item {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,.2);
        padding-top: 28px;
    }
    body.qlb-home .qlb-footer-links { grid-template-columns: repeat(2, 1fr); }

    /* ── HERO: mobile fix — QLB-SLIDER-MOBILE-FIX-01 ─────────────
       Root cause: padding 60px 0 28vh 0 + min-height 100vh crushes
       the slider area on phones (28vh ≈ 200px+ of dead space).
    ── */
    body.qlb-home .qlb-hero {
        min-height: 480px !important;
        padding: 48px 0 48px 0 !important;
    }
}

/* Tablet — reduce excessive bottom padding without killing desktop look */
@media (min-width: 768px) and (max-width: 1023px) {
    body.qlb-home .qlb-hero {
        padding-bottom: 10vh !important;
        min-height: 520px !important;
    }
}
@media (min-width: 768px) {
    body.qlb-home .qlb-hamburger { display: none; }
}
