/* === style-premium.css — Phoenix B Fit Premium Overrides === */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
    --bg-dark:            #0f0f11;
    --bg-darker:          #0a0a0c;
    --bg-card:            rgba(22, 22, 27, 0.7);
    --bg-card-hover:      rgba(32, 32, 40, 0.85);
    --text-main:          #f0f0f0;
    --text-muted:         #888896;
    --text-dim:           #555560;
    --accent-red:         #e8232a;
    --accent-red-dark:    #a01018;
    --accent-gradient:    linear-gradient(135deg, #e8232a 0%, #a01018 100%);
    --glass-border:       rgba(255, 255, 255, 0.07);
    --glass-shadow:       0 8px 32px rgba(0, 0, 0, 0.45);
    --ease:               cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition:         all 0.35s var(--ease);
}

/* ─── Base ───────────────────────────────────────────────────── */
body {
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--bg-darker) !important;
    color: var(--text-main) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    letter-spacing: -0.5px;
}

.black-bg { background-color: var(--bg-darker) !important; }
.preloader { background: var(--bg-darker) !important; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn, .border-btn {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 4px !important;
    padding: 12px 28px !important;
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
}

.btn {
    background: var(--accent-gradient) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 3px 12px rgba(232, 35, 42, 0.28) !important;
}
.btn::after, .border-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
}
.btn:hover::after, .border-btn:hover::after {
    left: 200%;
    transition: left 0.7s ease-in-out;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(232, 35, 42, 0.45) !important;
    color: #fff !important;
}

.border-btn {
    background: transparent !important;
    color: var(--text-main) !important;
    border: 1.5px solid var(--accent-red) !important;
}
.border-btn:hover {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 35, 42, 0.35) !important;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Thin red top accent bar */
header::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--accent-gradient);
    width: 100%;
}

.header-area.header-transparent {
    background: rgba(10, 10, 12, 0.82) !important;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state — JS adds .sticky-header to body or .main-header */
.main-header.header-fixed,
.header-sticky.is-sticky {
    background: rgba(8, 8, 10, 0.96) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
}

.menu-wrapper {
    height: 72px;
    padding: 0 24px;
}

/* Logo */
.logo a img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}
.logo a:hover img {
    opacity: 0.85;
    transform: scale(1.03);
}

/* Nav links */
.main-menu ul li a {
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    padding: 8px 4px !important;
    position: relative;
    transition: color 0.25s ease;
}

/* Underline slide-in effect */
.main-menu ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.28s var(--ease);
    border-radius: 2px;
}
.main-menu ul > li:hover > a::after,
.main-menu ul > li.active > a::after {
    width: 100%;
}

.main-menu ul li a:hover,
.main-menu ul li:hover > a {
    color: var(--accent-red) !important;
}

/* Submenu */
.submenu {
    background: rgba(12, 12, 15, 0.97) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 35, 42, 0.15) !important;
    border-radius: 8px !important;
    min-width: 220px;
    padding: 10px 0 !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.submenu li {
    border-bottom: none !important;
}
.submenu li a {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    padding: 9px 20px !important;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: block;
    transition: var(--transition);
}
.submenu li a:hover {
    color: var(--text-main) !important;
    background: rgba(232, 35, 42, 0.08) !important;
    padding-left: 26px !important;
}
/* Remove the underline effect on submenu items */
.submenu li a::after { display: none !important; }

/* CTA header btn */
.header-btns a.btn {
    font-size: 12px !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    letter-spacing: 1.5px;
    background: var(--accent-gradient) !important;
}

/* Mobile hamburger */
.slicknav_menu { background: rgba(10, 10, 12, 0.97) !important; }
.slicknav_btn { background: transparent !important; }
.slicknav_icon-bar { background: var(--accent-red) !important; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
    background: var(--bg-dark) !important;
}

.pbf-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(232, 35, 42, 0.2);
    padding: 70px 0 0;
    font-family: 'Outfit', sans-serif;
}

/* Footer top grid */
.pbf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 992px) {
    .pbf-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 576px) {
    .pbf-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Brand column */
.pbf-footer-brand .footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: 18px;
    display: block;
}
.pbf-footer-brand p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 280px;
}

/* Social icons */
.pbf-social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}
.pbf-social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}
.pbf-social-row a:hover {
    border-color: var(--accent-red);
    background: rgba(232, 35, 42, 0.1);
    color: var(--accent-red);
    transform: translateY(-3px);
}

/* Column headings */
.pbf-footer-col h5 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red) !important;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

/* Footer nav links */
.pbf-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pbf-footer-col ul li {
    margin-bottom: 10px;
}
.pbf-footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pbf-footer-col ul li a::before {
    content: '›';
    color: var(--accent-red);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}
.pbf-footer-col ul li a:hover {
    color: var(--text-main);
    transform: translateX(4px);
}
.pbf-footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact info items */
.pbf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}
.pbf-contact-item i {
    color: var(--accent-red);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.pbf-contact-item a {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: color 0.25s;
}
.pbf-contact-item a:hover {
    color: var(--accent-red) !important;
}

/* Footer bottom bar */
.pbf-footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.pbf-footer-bottom p {
    margin: 0;
    color: var(--text-dim);
    font-size: 13px;
}
.pbf-footer-bottom a {
    color: var(--accent-red) !important;
    text-decoration: none;
}
.pbf-footer-bottom a:hover {
    text-decoration: underline;
}

/* Scroll-to-top button */
#back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
}
#back-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(232, 35, 42, 0.35);
    transition: var(--transition);
    text-decoration: none;
}
#back-top a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232, 35, 42, 0.5);
}

/* ─── Cards & Sections ───────────────────────────────────────── */
.glass-card,
.single-topic, .single-cat, .single-services {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    padding: 30px 22px !important;
    box-shadow: var(--glass-shadow);
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
}

.single-topic::before, .single-cat::before, .single-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.single-topic:hover::before, .single-cat:hover::before, .single-services:hover::before {
    transform: scaleX(1);
}
.single-topic:hover, .single-cat:hover, .single-services:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 35, 42, 0.18) !important;
    background: var(--bg-card-hover) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 18px rgba(232,35,42,0.08);
}

.single-topic .topic-img img, .cat-icon img, .features-icon img {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
    transition: var(--transition) !important;
    max-height: 72px;
}
.single-topic:hover .topic-img img,
.single-cat:hover .cat-icon img,
.single-services:hover .features-icon img {
    transform: scale(1.08) rotate(3deg);
}

.topic-content h3, .cat-cap h5 a, .features-caption h3 {
    color: var(--text-main) !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    margin: 16px 0 12px !important;
    transition: var(--transition);
}
.cat-cap h5 a:hover { color: var(--accent-red) !important; }
.topic-content p, .cat-cap p, .features-caption p {
    color: var(--text-muted) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

/* Section titles */
.section-tittle h2 {
    font-size: 44px !important;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
}
.section-tittle h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Top Bar */
.pbf-topbar {
    background: rgba(10, 10, 12, 0.85);
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 40px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}
@media (max-width: 1200px) { .pbf-topbar { padding: 8px 15px; } }
.pbf-topbar-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    align-items: center;
}
.pbf-topbar .text-right .pbf-topbar-info {
    justify-content: flex-end;
}
.pbf-topbar-info li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pbf-topbar-info i {
    color: var(--accent-red);
}

/* Hero */
.slider-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,12,0.05) 0%, var(--bg-darker) 100%);
    pointer-events: none;
    z-index: 1;
}
.slider-active { z-index: 2; position: relative; }
.hero__caption span {
    color: var(--accent-red) !important;
    font-size: clamp(14px, 4vw, 18px) !important;
    letter-spacing: clamp(2px, 1vw, 4px) !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

/* Layout helpers */
.pb-padding { padding-bottom: 96px; }
.pt-50      { padding-top: 50px; }

/* Hero Slider Overrides */
.slider-area {
    background-image: none !important;
}
.single-slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.single-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.4);
    z-index: 0;
}
.single-slider > .container {
    position: relative;
    z-index: 1;
}

/* ─── Premium Redesign Structures ────────────────────────────── */

/* Section Spacing Boost */
.premium-section {
    padding: 140px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

/* Section Titles (Huge Typography) */
.premium-section-title {
    font-size: clamp(40px, 6vw, 80px) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}
.premium-section-title span {
    color: var(--accent-red);
}

/* ─── Premium Cinematic Effects ──────────────────────────────── */

.film-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

.ambient-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(160, 16, 24, 0.35) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

@keyframes premiumZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.premium-zoom {
    animation: premiumZoom 20s ease-in-out infinite alternate;
}
.premium-section-title span {
    color: var(--accent-red);
}
.premium-section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* Elite Disciplines (Bento Grid) */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 20px;
}
@media (max-width: 1200px) {
    .premium-grid { display: flex; flex-wrap: wrap; gap: 20px; }
    .premium-card { width: calc(50% - 10px); }
    .premium-card.full-mobile { width: 100%; }
}
@media (max-width: 768px) {
    .premium-card { width: 100% !important; height: 360px !important; }
}

.premium-card {
    position: relative;
    height: 440px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    text-decoration: none !important;
}
/* Individual Card Spans for Bento Effect on Desktop */
@media (min-width: 1201px) {
    .premium-card:nth-child(1) { grid-column: span 5; } /* Strength */
    .premium-card:nth-child(2) { grid-column: span 3; } /* Cardio */
    .premium-card:nth-child(3) { grid-column: span 4; } /* PT */
    
    .premium-card:nth-child(4) { grid-column: span 4; height: 380px; } /* CrossFit */
    .premium-card:nth-child(5) { grid-column: span 4; height: 380px; } /* General */
    .premium-card:nth-child(6) { grid-column: span 4; height: 380px; } /* Zumba */
    
    .premium-card:nth-child(7) { grid-column: span 6; } /* Functional */
    .premium-card:nth-child(8) { grid-column: span 6; } /* MMA */
    
    .premium-card:nth-child(9) { grid-column: span 8; height: 400px; } /* Boxing */
    .premium-card:nth-child(10) { grid-column: span 4; height: 400px; } /* Taekwondo */
}
.premium-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    z-index: 1;
}
.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.4) 50%, transparent 100%);
    z-index: 2;
    transition: opacity 0.5s ease;
}
.premium-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.5s var(--ease);
}
.premium-card:hover img { transform: scale(1.05); }
.premium-card:hover .premium-card-content { transform: translateY(0); }
.premium-card:hover::before { background: linear-gradient(to top, rgba(232,35,42,0.9) 0%, rgba(5,5,5,0.6) 60%, transparent 100%); }

.premium-card h3 {
    color: #fff !important;
    font-size: 32px !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.premium-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    transition-delay: 0.1s;
}
.premium-card:hover p { opacity: 1; }

.card-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.card-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.premium-card:hover .card-btn i { transform: translateX(5px); }

/* Editorial About Section */
.editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 991px) {
    .editorial-layout { grid-template-columns: 1fr; gap: 40px; }
}
.editorial-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.editorial-img-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}
.editorial-img-wrapper:hover img { filter: grayscale(0%); }

.editorial-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}
.editorial-stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.editorial-stat-num span { color: var(--accent-red); }
.editorial-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Services Grid (3 columns) */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) { .services-premium-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-premium-grid { grid-template-columns: 1fr; } }

.service-premium-card {
    background: #0f0f11;
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-premium-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232,35,42,0.1);
}
.service-premium-icon {
    font-size: 40px;
    color: var(--accent-red);
    margin-bottom: 24px;
}
.service-premium-card h4 {
    font-size: 22px !important;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.service-premium-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Glassmorphic Final CTA */
.premium-cta-banner {
    background: linear-gradient(135deg, rgba(232,35,42,0.1) 0%, transparent 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(232,35,42,0.15) 0%, transparent 60%);
    z-index: 0;
}
.premium-cta-banner > * { position: relative; z-index: 1; }
.premium-cta-title {
    font-size: 48px !important;
    color: #fff;
    margin-bottom: 20px;
}

/* Phoenix Shorts Scroller */
.shorts-scroller {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--bg-dark);
}
.shorts-scroller::-webkit-scrollbar { height: 8px; }
.shorts-scroller::-webkit-scrollbar-track { background: var(--bg-dark); border-radius: 4px; }
.shorts-scroller::-webkit-scrollbar-thumb { background: var(--accent-red); border-radius: 4px; }

.short-card {
    flex: 0 0 315px;
    height: 560px; /* 9:16 ratio approx */
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    position: relative;
}
.short-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232,35,42,0.5);
}
.short-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    .short-card { flex: 0 0 270px; height: 480px; }
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 32px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float a:hover {
    transform: scale(1.15) rotate(-10deg);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float a { width: 50px; height: 50px; font-size: 28px; }
}

/* Premium Journey Timeline for Quotes */
.journey-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}
.journey-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.journey-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.journey-item:nth-child(even) { animation-delay: 0.2s; }
.journey-item:nth-child(odd) { animation-delay: 0.4s; }

.journey-item.left { left: 0; }
.journey-item.right { left: 50%; }

/* The circle on the timeline */
.journey-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-dark);
    border: 3px solid var(--accent-red);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(232, 35, 42, 0.5);
}
.journey-item.right::after {
    left: -8px;
}

/* The Quote Card */
.journey-content {
    padding: 30px;
    background: #16161B;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.journey-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 35, 42, 0.15);
    border-color: rgba(232, 35, 42, 0.4);
}
.journey-item.left .journey-content {
    flex-direction: row-reverse;
    text-align: right;
}

/* The Image */
.journey-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: border-color 0.4s ease;
}
.journey-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}
.journey-content:hover .journey-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.journey-content:hover .journey-img {
    border-color: var(--accent-red);
}

.journey-text {
    flex-grow: 1;
}

.journey-quotes-icon {
    font-size: 30px;
    color: rgba(232, 35, 42, 0.2);
    margin-bottom: 10px;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .journey-timeline::after { left: 40px; }
    .journey-item { width: 100%; padding-left: 90px; padding-right: 15px; }
    .journey-item.left, .journey-item.right { left: 0; }
    .journey-item::after { left: 32px; top: 80px; transform: none; }
    .journey-item.left .journey-content { flex-direction: column; text-align: center; }
    .journey-item.right .journey-content { flex-direction: column; text-align: center; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================================
   UI/UX RESPONSIVENESS HOTFIXES (BLANK SPACE & VISIBILITY)
   ========================================================================= */

/* 1. Mobile Menu Link Visibility */
.slicknav_nav a {
    color: #f0f0f0 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 12px 15px !important;
    transition: color 0.3s ease;
}
.slicknav_nav a:hover {
    color: var(--accent-red) !important;
    background: rgba(232, 35, 42, 0.1) !important;
}
.slicknav_menu .slicknav_icon-bar {
    background-color: var(--accent-red) !important;
}

/* 2. Hero Subpage Padding Overrides (Moving away from inline styles) */
.premium-hero-subpage {
    padding: 220px 0 120px !important;
}

/* 3. Global Mobile Spacing & Typography Crush */
@media (max-width: 768px) {
    /* Crush Massive Section Paddings */
    .premium-section,
    .slider-area,
    .courses-area,
    .gallery-area,
    .team-area {
        padding: 60px 0 !important;
    }
    
    /* Crush Massive Subpage Hero Paddings */
    .premium-hero-subpage {
        padding: 140px 0 60px !important;
    }
    
    /* Shrink Massive Headers */
    .premium-section-title,
    .hero-cap2 h2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    /* Journey Timeline Fixes */
    .journey-timeline {
        padding: 30px 0 !important;
    }
    .journey-item {
        padding: 10px 15px 10px 60px !important;
    }
    .journey-img {
        width: 80px !important;
        height: 80px !important;
    }
    
    /* Hero Slider Height Crush */
    .slider-height {
        min-height: 500px !important;
    }
    
    /* Grid Adjustments */
    .pbf-footer-grid {
        gap: 20px !important;
    }
    
    .single-services, .single-cat {
        padding: 20px !important;
    }
}

/* --- Mobile Overrides for Specific Oversized Elements --------------------- */
@media (max-width: 768px) {
    /* Limit the Hero section massive titles and subheadings */
    .premium-hero-subpage .hero-cap2 h2 {
        font-size: 38px !important;
        line-height: 1.2 !important;
    }
    .premium-hero-subpage .hero-cap2 p {
        font-size: 16px !important;
    }
    
    /* Limit the massive service stats (e.g. 100% and Zero) */
    .service-stats h4 {
        font-size: 28px !important;
    }
    .service-stats p {
        font-size: 12px !important;
    }
    
    /* Make editorial margins breathe better on small screens */
    .service-details-area .col-lg-6 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* --- Mobile Menu Visibility Fix --------------------- */
.slicknav_nav {
    background: var(--bg-darker) !important;
    border-top: 1px solid var(--glass-border) !important;
    border-bottom: 1px solid var(--glass-border) !important;
}
.slicknav_nav a, .slicknav_nav .slicknav_row {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
}
.slicknav_nav a:hover, .slicknav_nav .slicknav_row:hover {
    color: var(--accent-red) !important;
    background: rgba(232, 35, 42, 0.1) !important;
}
.slicknav_nav .slicknav_arrow {
    color: #ffffff !important;
}

/* --- Critical Mobile Responsiveness Overrides --- */
@media (max-width: 767px) {
    /* Hero Section Centering & Clipping Fix */
    .slider-area .col-xl-9, 
    .slider-area .col-lg-9, 
    .slider-area .col-md-10 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero__caption {
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero__caption span {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto 15px !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        letter-spacing: 2px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    .hero__caption h1 {
        text-align: center !important;
        margin: 0 auto 15px !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Hero Logo Centering & Scale */
    .hero-logo {
        max-width: 85% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: inline-block !important;
    }
    
    /* Hero Button Centering */
    .hero__caption .hero-btn {
        display: inline-flex !important;
        margin: 15px auto 0 !important;
        padding: 16px 28px !important;
        width: auto !important;
        font-size: 12px !important;
    }

    /* WhatsApp Button Scale & Safe Positioning */
    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        bottom: 20px !important;
        right: 20px !important;
        background-color: #25d366 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
        z-index: 9999 !important;
    }
    .whatsapp-float i {
        font-size: 28px !important;
        margin: 0 !important;
        color: white !important;
    }
}

/* --- Contact Page & Nice-Select Premium Fixes --- */
.contact-info-cards p, 
.contact-info-cards a,
.contact-info-cards span {
    opacity: 1 !important;
    visibility: visible !important;
    color: #A0A0AB !important;
}

.premium-card h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Nice Select Dark Theme Overrides - High Specificity */
div.nice-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    height: 60px !important;
    line-height: 58px !important;
    width: 100% !important;
    border-radius: 8px !important;
}

div.nice-select:after {
    border-bottom: 2px solid #ffffff !important;
    border-right: 2px solid #ffffff !important;
}

div.nice-select .list {
    background-color: #16161B !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    width: 100% !important;
    margin-top: 5px !important;
    z-index: 999 !important;
}

div.nice-select .option {
    color: #ffffff !important;
    line-height: 50px !important;
    min-height: 50px !important;
    padding-left: 20px !important;
    background-color: transparent !important;
}

div.nice-select .option.focus, 
div.nice-select .option.selected.focus, 
div.nice-select .option:hover {
    background-color: var(--accent-red) !important;
    color: #ffffff !important;
}

/* Background Title Contrast Fix */
.premium-card h3::before {
    color: rgba(255, 255, 255, 0.1) !important;
    opacity: 1 !important;
}
