/* ============================================================
   BOLU BEYAZ EŞYA SERVİSİ - MAIN STYLESHEET
   Version: 1.0.0
============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --bbe-primary: #c0392b;
    --bbe-primary-dark: #a93226;
    --bbe-primary-light: #e74c3c;
    --bbe-secondary: #1a1a2e;
    --bbe-accent: #f39c12;
    --bbe-white: #ffffff;
    --bbe-light: #f8f9fa;
    --bbe-gray: #6c757d;
    --bbe-dark: #1a1a2e;
    --bbe-text: #2d3436;
    --bbe-text-light: #636e72;
    --bbe-border: #e9ecef;
    --bbe-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --bbe-shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
    --bbe-radius: 12px;
    --bbe-radius-lg: 20px;
    --bbe-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bbe-ticker-bg: #c0392b;
    --bbe-font: 'Poppins', sans-serif;
    --bbe-font-heading: 'Raleway', 'Poppins', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--bbe-font);
    color: var(--bbe-text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bbe-primary); text-decoration: none; transition: var(--bbe-transition); }
a:hover { color: var(--bbe-primary-dark); }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.bbe-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bbe-section { padding: 80px 0; }
.bbe-bg-light { background: var(--bbe-light); }
.bbe-bg-dark { background: var(--bbe-dark); }
.bbe-bg-primary { background: var(--bbe-primary); }

.bbe-section-header { text-align: center; margin-bottom: 60px; }
.bbe-section-tag {
    display: inline-block;
    background: var(--bbe-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.bbe-section-header h2 {
    font-family: var(--bbe-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--bbe-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.bbe-section-header p { color: var(--bbe-text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.bbe-section-cta { text-align: center; margin-top: 40px; }

/* ---- BUTTONS ---- */
.bbe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--bbe-transition);
    white-space: nowrap;
    text-decoration: none;
}
.bbe-btn-primary { background: var(--bbe-primary); color: #fff; border-color: var(--bbe-primary); }
.bbe-btn-primary:hover { background: var(--bbe-primary-dark); border-color: var(--bbe-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.4); }
.bbe-btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.bbe-btn-whatsapp:hover { background: #128c7e; border-color: #128c7e; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.bbe-btn-white { background: #fff; color: var(--bbe-primary); border-color: #fff; }
.bbe-btn-white:hover { background: var(--bbe-light); transform: translateY(-2px); }
.bbe-btn-outline { background: transparent; border-color: var(--bbe-primary); color: var(--bbe-primary); }
.bbe-btn-outline:hover { background: var(--bbe-primary); color: #fff; transform: translateY(-2px); }
.bbe-btn-lg { padding: 16px 36px; font-size: 1rem; }
.bbe-btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.bbe-btn-full { width: 100%; justify-content: center; }

.bbe-btn-pulse {
    animation: bbe-pulse 2s infinite;
}
@keyframes bbe-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
}

/* ---- FLOATING BUTTONS ---- */
.bbe-float-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bbe-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--bbe-transition);
    text-decoration: none;
}
.bbe-float-btn i { font-size: 1.2rem; }
.bbe-float-btn:hover { transform: translateX(-5px) scale(1.05); color: #fff; }
.bbe-whatsapp-btn { background: #25d366; }
.bbe-whatsapp-btn:hover { background: #128c7e; }
.bbe-call-btn { background: var(--bbe-primary); }
.bbe-call-btn:hover { background: var(--bbe-primary-dark); }
.bbe-float-label { font-size: 0.8rem; font-weight: 700; }

/* ---- TICKER ---- */
.bbe-ticker-bar {
    background: var(--bbe-ticker-bg);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}
.bbe-ticker-inner { overflow: hidden; white-space: nowrap; }
.bbe-ticker-track {
    display: inline-flex;
    animation: bbe-ticker 40s linear infinite;
}
.bbe-ticker-content {
    display: inline-block;
    padding-right: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
@keyframes bbe-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.bbe-ticker-bar:hover .bbe-ticker-track { animation-play-state: paused; }

/* ---- TOPBAR ---- */
.bbe-topbar {
    background: var(--bbe-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}
.bbe-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bbe-topbar-left, .bbe-topbar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.bbe-topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--bbe-transition); }
.bbe-topbar-item:hover { color: #fff; }
.bbe-topbar-item i { color: var(--bbe-primary); font-size: 0.8rem; }
.bbe-topbar-right a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--bbe-transition); }
.bbe-topbar-right a:hover { color: var(--bbe-primary); }
.bbe-topbar-hours { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }

/* ---- HEADER ---- */
.bbe-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--bbe-transition);
}
.bbe-header.bbe-scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.bbe-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* LOGO */
.bbe-logo-link { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.bbe-logo-img { height: 70px; width: auto; object-fit: contain; }
.bbe-logo-text { display: flex; flex-direction: column; }
.bbe-logo-name { font-family: var(--bbe-font-heading); font-size: 1.1rem; font-weight: 900; color: var(--bbe-dark); line-height: 1.2; }
.bbe-logo-tagline { font-size: 0.65rem; color: var(--bbe-primary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.custom-logo-link img { height: 70px; width: auto; }

/* NAVIGATION */
.bbe-menu { display: flex; align-items: center; gap: 4px; }
.bbe-menu li a {
    display: block;
    padding: 8px 14px;
    color: var(--bbe-dark);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: var(--bbe-transition);
    position: relative;
}
.bbe-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--bbe-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.bbe-menu li a:hover,
.bbe-menu li.current-menu-item a { color: var(--bbe-primary); }
.bbe-menu li a:hover::after,
.bbe-menu li.current-menu-item a::after { width: 60%; }

.bbe-header-cta { display: flex; align-items: center; gap: 10px; }
.bbe-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.bbe-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--bbe-dark); border-radius: 2px; transition: var(--bbe-transition); }
.bbe-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bbe-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.bbe-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.bbe-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.bbe-mobile-menu.active { right: 0; }
.bbe-mobile-menu-inner { padding: 80px 24px 24px; }
.bbe-mobile-nav li a {
    display: block;
    padding: 14px 0;
    color: var(--bbe-dark);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--bbe-border);
    transition: var(--bbe-transition);
}
.bbe-mobile-nav li a:hover { color: var(--bbe-primary); padding-left: 10px; }
.bbe-mobile-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.bbe-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    display: none;
}
.bbe-mobile-overlay.active { display: block; }

/* ---- HERO SECTION ---- */
.bbe-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 40%, #16213e 100%);
}
.bbe-hero-bg { position: absolute; inset: 0; }
.bbe-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(52,152,219,0.08) 0%, transparent 50%);
}
.bbe-hero-particles { position: absolute; inset: 0; }

.bbe-hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 20px;
    max-width: 800px;
}
.bbe-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192,57,43,0.2);
    border: 1px solid rgba(192,57,43,0.4);
    color: #ff9f9f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.bbe-hero-title {
    font-family: var(--bbe-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.bbe-hero-services { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.bbe-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.bbe-hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; }
.bbe-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.bbe-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.bbe-stat { text-align: center; }
.bbe-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.bbe-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }

.bbe-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.bbe-hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    animation: bbe-bounce 2s infinite;
    transition: var(--bbe-transition);
}
.bbe-hero-scroll a:hover { border-color: rgba(255,255,255,0.8); color: #fff; }
@keyframes bbe-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Particle effect */
.bbe-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: bbe-float linear infinite;
    opacity: 0.15;
}
@keyframes bbe-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ---- SERVICES STRIP ---- */
.bbe-services-strip { background: #fff; padding: 0; margin-top: -60px; position: relative; z-index: 10; }
.bbe-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; box-shadow: var(--bbe-shadow-hover); border-radius: var(--bbe-radius-lg); overflow: hidden; }
.bbe-strip-card {
    padding: 36px 28px;
    background: #fff;
    border-right: 1px solid var(--bbe-border);
    transition: var(--bbe-transition);
    position: relative;
    overflow: hidden;
}
.bbe-strip-card:last-child { border-right: none; }
.bbe-strip-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bbe-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.bbe-strip-card:hover::before { transform: scaleX(1); }
.bbe-strip-card:hover { background: var(--bbe-light); }
.bbe-strip-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.bbe-strip-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--bbe-dark); }
.bbe-strip-card p { font-size: 0.85rem; color: var(--bbe-text-light); margin-bottom: 12px; line-height: 1.5; }
.bbe-link { font-size: 0.82rem; font-weight: 700; color: var(--bbe-primary); display: inline-flex; align-items: center; gap: 6px; }
.bbe-link:hover { gap: 10px; }

/* ---- WHY US ---- */
.bbe-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.bbe-why-image-wrap { position: relative; }
.bbe-why-image-wrap img { border-radius: var(--bbe-radius-lg); box-shadow: var(--bbe-shadow-hover); width: 100%; }
.bbe-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bbe-primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--bbe-radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(192,57,43,0.4);
}
.bbe-experience-badge strong { font-size: 2.5rem; font-weight: 900; display: block; line-height: 1; }
.bbe-experience-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }
.bbe-experience-badge-large { bottom: -30px; right: -30px; padding: 24px 28px; }
.bbe-experience-badge-large strong { font-size: 3rem; }

.bbe-why-content h2 { font-family: var(--bbe-font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; color: var(--bbe-dark); }
.bbe-why-content > p { color: var(--bbe-text-light); margin-bottom: 30px; font-size: 1rem; }

.bbe-features-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.bbe-feature-item { display: flex; gap: 16px; align-items: flex-start; }
.bbe-feature-icon { width: 40px; height: 40px; background: rgba(192,57,43,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--bbe-primary); font-size: 1rem; flex-shrink: 0; }
.bbe-feature-item strong { display: block; font-weight: 700; color: var(--bbe-dark); font-size: 0.95rem; }
.bbe-feature-item p { font-size: 0.85rem; color: var(--bbe-text-light); margin: 0; }
.bbe-section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--bbe-primary); border: 1px solid rgba(192,57,43,0.3); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }

/* ---- BRANDS ---- */
.bbe-brands-image-wrap { max-width: 900px; margin: 0 auto 40px; }
.bbe-brands-img { width: 100%; border-radius: var(--bbe-radius-lg); box-shadow: var(--bbe-shadow); }
.bbe-brands-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.bbe-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--bbe-border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bbe-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--bbe-transition);
}
.bbe-brand-chip:hover { border-color: var(--bbe-primary); color: var(--bbe-primary); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(192,57,43,0.15); }
.bbe-brand-chip i { color: #2ecc71; }
.bbe-brand-chip-red i { color: var(--bbe-primary); }
.bbe-brands-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* ---- REGIONS ---- */
.bbe-regions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.bbe-region-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--bbe-radius);
    padding: 20px 16px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: var(--bbe-transition);
    backdrop-filter: blur(8px);
}
.bbe-region-card:hover { background: var(--bbe-primary); border-color: var(--bbe-primary); transform: translateY(-4px); color: #fff; box-shadow: 0 8px 25px rgba(192,57,43,0.4); }
.bbe-region-icon { font-size: 1.5rem; margin-bottom: 8px; color: var(--bbe-primary); transition: var(--bbe-transition); }
.bbe-region-card:hover .bbe-region-icon { color: #fff; }
.bbe-region-card span { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.bbe-region-card small { font-size: 0.7rem; opacity: 0.7; }
.bbe-regions-cta { text-align: center; margin-top: 40px; }

/* ---- PROCESS ---- */
.bbe-process-grid { display: flex; align-items: center; gap: 0; justify-content: center; flex-wrap: wrap; }
.bbe-process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--bbe-radius-lg);
    box-shadow: var(--bbe-shadow);
    position: relative;
    transition: var(--bbe-transition);
}
.bbe-process-step:hover { transform: translateY(-6px); box-shadow: var(--bbe-shadow-hover); }
.bbe-process-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--bbe-primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.6;
}
.bbe-process-icon { font-size: 2rem; color: var(--bbe-primary); margin-bottom: 12px; }
.bbe-process-step h4 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; color: var(--bbe-dark); }
.bbe-process-step p { font-size: 0.82rem; color: var(--bbe-text-light); }
.bbe-process-arrow { color: var(--bbe-primary); font-size: 1.2rem; padding: 0 8px; opacity: 0.4; }

/* ---- GALLERY PREVIEW ---- */
.bbe-gallery-grid, .bbe-gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bbe-gallery-img-wrap { position: relative; overflow: hidden; border-radius: var(--bbe-radius); aspect-ratio: 4/3; }
.bbe-gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bbe-gallery-item:hover .bbe-gallery-img-wrap img { transform: scale(1.08); }
.bbe-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--bbe-transition);
    color: #fff;
    text-align: center;
    padding: 20px;
}
.bbe-gallery-item:hover .bbe-gallery-overlay { opacity: 1; }
.bbe-gallery-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bbe-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
.bbe-gallery-overlay p { font-weight: 600; font-size: 0.9rem; }
.bbe-gallery-placeholder { text-align: center; padding: 80px 20px; }
.bbe-gallery-placeholder-icon { font-size: 4rem; color: var(--bbe-border); margin-bottom: 20px; }

/* ---- GALLERY FILTER ---- */
.bbe-gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.bbe-filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid var(--bbe-border);
    background: #fff;
    color: var(--bbe-text);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--bbe-transition);
}
.bbe-filter-btn:hover, .bbe-filter-btn.active { background: var(--bbe-primary); border-color: var(--bbe-primary); color: #fff; }
.bbe-gallery-filter-item.bbe-hidden { display: none !important; }

/* ---- LIGHTBOX ---- */
.bbe-lightbox { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.bbe-lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.bbe-lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; text-align: center; }
.bbe-lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 8px; }
.bbe-lightbox-content p { color: #fff; margin-top: 12px; font-weight: 600; }
.bbe-lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.bbe-lightbox-prev, .bbe-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; border-radius: 50%; width: 44px; height: 44px; color: #fff; font-size: 1rem; cursor: pointer; transition: var(--bbe-transition); }
.bbe-lightbox-prev { left: -60px; }
.bbe-lightbox-next { right: -60px; }
.bbe-lightbox-prev:hover, .bbe-lightbox-next:hover { background: var(--bbe-primary); }

/* ---- CONTACT ---- */
.bbe-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.bbe-contact-info h2 { font-family: var(--bbe-font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; color: var(--bbe-dark); }
.bbe-contact-info > p { color: var(--bbe-text-light); margin-bottom: 32px; }
.bbe-contact-cards { display: flex; flex-direction: column; gap: 14px; }
.bbe-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--bbe-border);
    border-radius: var(--bbe-radius);
    text-decoration: none;
    color: var(--bbe-text);
    transition: var(--bbe-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.bbe-contact-card:hover { border-color: var(--bbe-primary); transform: translateX(4px); box-shadow: 0 4px 15px rgba(192,57,43,0.1); color: var(--bbe-text); }
.bbe-contact-card i { font-size: 1.2rem; color: var(--bbe-primary); width: 40px; height: 40px; background: rgba(192,57,43,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.bbe-contact-card i.fa-whatsapp { color: #25d366; background: rgba(37,211,102,0.1); }
.bbe-contact-card strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--bbe-dark); }
.bbe-contact-card span { font-size: 0.82rem; color: var(--bbe-text-light); }

/* ---- CONTACT FORM ---- */
.bbe-contact-form-wrap {
    background: #fff;
    border-radius: var(--bbe-radius-lg);
    padding: 40px;
    box-shadow: var(--bbe-shadow);
    border: 1px solid var(--bbe-border);
}
.bbe-contact-form h3 { font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; color: var(--bbe-dark); }
.bbe-form-group { margin-bottom: 18px; }
.bbe-form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--bbe-dark); }
.bbe-form-group input,
.bbe-form-group select,
.bbe-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bbe-border);
    border-radius: 10px;
    font-family: var(--bbe-font);
    font-size: 0.9rem;
    color: var(--bbe-text);
    background: #fff;
    transition: var(--bbe-transition);
    outline: none;
}
.bbe-form-group input:focus,
.bbe-form-group select:focus,
.bbe-form-group textarea:focus { border-color: var(--bbe-primary); box-shadow: 0 0 0 4px rgba(192,57,43,0.1); }
.bbe-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bbe-form-privacy { font-size: 0.75rem; color: var(--bbe-text-light); margin-top: 12px; text-align: center; }
.bbe-form-result { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; display: none; }
.bbe-form-result.success { background: #d4edda; color: #155724; display: block; }
.bbe-form-result.error { background: #f8d7da; color: #721c24; display: block; }
.bbe-contact-map { border-radius: var(--bbe-radius-lg); overflow: hidden; }

/* ---- CONTACT TOP CARDS ---- */
.bbe-contact-top-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.bbe-contact-top-card {
    background: #fff;
    border: 1px solid var(--bbe-border);
    border-radius: var(--bbe-radius-lg);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--bbe-text);
    transition: var(--bbe-transition);
    box-shadow: var(--bbe-shadow);
}
.bbe-contact-top-card:hover { transform: translateY(-6px); box-shadow: var(--bbe-shadow-hover); border-color: var(--bbe-primary); color: var(--bbe-text); }
.bbe-contact-top-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; }
.bbe-contact-top-card h4 { font-weight: 700; font-size: 0.85rem; color: var(--bbe-text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.bbe-contact-top-card strong { display: block; font-size: 0.9rem; color: var(--bbe-dark); margin-bottom: 4px; word-break: break-all; }
.bbe-contact-top-card small { font-size: 0.75rem; color: var(--bbe-text-light); }

/* ---- FAQ ---- */
.bbe-faq-list { max-width: 800px; margin: 0 auto; }
.bbe-faq-item { border: 1px solid var(--bbe-border); border-radius: var(--bbe-radius); margin-bottom: 12px; overflow: hidden; }
.bbe-faq-question {
    width: 100%;
    padding: 18px 24px;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--bbe-font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bbe-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--bbe-transition);
}
.bbe-faq-question:hover { background: var(--bbe-light); color: var(--bbe-primary); }
.bbe-faq-question.active { background: var(--bbe-primary); color: #fff; }
.bbe-faq-question i { transition: transform 0.3s ease; font-size: 0.8rem; }
.bbe-faq-question.active i { transform: rotate(180deg); }
.bbe-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.bbe-faq-answer.active { max-height: 300px; }
.bbe-faq-answer p { padding: 16px 24px; color: var(--bbe-text-light); font-size: 0.9rem; border-top: 1px solid var(--bbe-border); }

/* ---- PAGE HERO ---- */
.bbe-page-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}
.bbe-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192,57,43,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.bbe-page-hero-overlay { display: none; }
.bbe-page-hero h1 {
    color: #fff;
    font-family: var(--bbe-font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.bbe-page-hero h1 i { color: var(--bbe-primary); font-size: 0.8em; }
.bbe-page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }
.bbe-page-hero-small { padding: 70px 0 40px; }

/* ---- BREADCRUMBS ---- */
.bbe-breadcrumbs { margin-bottom: 20px; }
.bbe-breadcrumbs ol { display: flex; gap: 8px; flex-wrap: wrap; }
.bbe-breadcrumbs li { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.bbe-breadcrumbs li::after { content: '/'; }
.bbe-breadcrumbs li:last-child::after { display: none; }
.bbe-breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; }
.bbe-breadcrumbs a:hover { color: #fff; }

/* ---- INNER CTA ---- */
.bbe-inner-cta { background: var(--bbe-primary); padding: 60px 0; }
.bbe-inner-cta-inner { text-align: center; }
.bbe-inner-cta h2 { color: #fff; font-family: var(--bbe-font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.bbe-inner-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 30px; }

/* ---- SERVICES ---- */
.bbe-service-category { margin-bottom: 70px; }
.bbe-service-category:last-child { margin-bottom: 0; }
.bbe-category-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--bbe-border); }
.bbe-category-icon { width: 64px; height: 64px; background: var(--bbe-dark); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; flex-shrink: 0; }
.bbe-category-header h2 { font-family: var(--bbe-font-heading); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--bbe-dark); }
.bbe-category-header p { color: var(--bbe-text-light); font-size: 0.9rem; }
.bbe-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bbe-service-card {
    background: #fff;
    border: 1px solid var(--bbe-border);
    border-radius: var(--bbe-radius-lg);
    padding: 28px 24px;
    transition: var(--bbe-transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.bbe-service-card:hover { transform: translateY(-6px); box-shadow: var(--bbe-shadow-hover); border-color: rgba(192,57,43,0.2); }
.bbe-service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; background: var(--bbe-light); color: var(--bbe-primary); }
.bbe-service-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--bbe-dark); }
.bbe-service-card p { font-size: 0.85rem; color: var(--bbe-text-light); margin-bottom: 16px; line-height: 1.6; }
.bbe-brands-section-inner { margin-top: 60px; }
.bbe-brands-two-col h4 { font-weight: 700; font-size: 1rem; text-align: center; margin-bottom: 12px; color: var(--bbe-dark); }

/* ---- REGIONS DETAIL ---- */
.bbe-map-container { margin-bottom: 50px; }
.bbe-regions-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bbe-region-detail-card {
    background: #fff;
    border: 1px solid var(--bbe-border);
    border-radius: var(--bbe-radius-lg);
    padding: 28px 24px;
    transition: var(--bbe-transition);
    box-shadow: var(--bbe-shadow);
}
.bbe-region-detail-card:hover { transform: translateY(-4px); box-shadow: var(--bbe-shadow-hover); border-color: rgba(192,57,43,0.2); }
.bbe-region-detail-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bbe-region-detail-header i { font-size: 1.2rem; color: var(--bbe-primary); }
.bbe-region-detail-header h3 { font-weight: 700; font-size: 0.95rem; color: var(--bbe-dark); line-height: 1.3; }
.bbe-region-detail-card > p { font-size: 0.85rem; color: var(--bbe-text-light); margin-bottom: 14px; }
.bbe-region-services { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.bbe-region-services span { font-size: 0.75rem; font-weight: 600; color: var(--bbe-primary); background: rgba(192,57,43,0.08); padding: 4px 10px; border-radius: 50px; display: flex; align-items: center; gap: 5px; }
.bbe-region-btns { display: flex; gap: 8px; }
.bbe-seo-text-block { background: var(--bbe-light); border-radius: var(--bbe-radius-lg); padding: 40px; margin-top: 60px; }
.bbe-seo-text-block h2 { font-family: var(--bbe-font-heading); font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; color: var(--bbe-dark); }
.bbe-seo-text-block p { color: var(--bbe-text-light); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.8; }
.bbe-seo-text-block a { color: var(--bbe-primary); font-weight: 600; }

/* ---- ABOUT ---- */
.bbe-about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; margin-bottom: 70px; }
.bbe-about-story-image { position: relative; }
.bbe-about-story-image img { border-radius: var(--bbe-radius-lg); box-shadow: var(--bbe-shadow-hover); width: 100%; }
.bbe-about-story-content h2 { font-family: var(--bbe-font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; color: var(--bbe-dark); }
.bbe-about-story-content p { color: var(--bbe-text-light); font-size: 0.95rem; margin-bottom: 16px; }
.bbe-about-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.bbe-stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 70px; }
.bbe-stat-card { background: #fff; border: 1px solid var(--bbe-border); border-radius: var(--bbe-radius-lg); padding: 24px 16px; text-align: center; box-shadow: var(--bbe-shadow); transition: var(--bbe-transition); }
.bbe-stat-card:hover { transform: translateY(-4px); box-shadow: var(--bbe-shadow-hover); border-color: rgba(192,57,43,0.2); }
.bbe-stat-icon { font-size: 1.5rem; color: var(--bbe-primary); margin-bottom: 10px; }
.bbe-stat-card strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--bbe-dark); }
.bbe-stat-card > span { font-size: 0.75rem; color: var(--bbe-text-light); margin-top: 4px; display: block; }

.bbe-values-section { margin-bottom: 70px; }
.bbe-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bbe-value-card { background: #fff; border: 1px solid var(--bbe-border); border-radius: var(--bbe-radius-lg); padding: 28px 24px; text-align: center; transition: var(--bbe-transition); box-shadow: var(--bbe-shadow); }
.bbe-value-card:hover { transform: translateY(-6px); box-shadow: var(--bbe-shadow-hover); }
.bbe-value-icon { width: 60px; height: 60px; background: rgba(192,57,43,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--bbe-primary); margin: 0 auto 16px; }
.bbe-value-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--bbe-dark); }
.bbe-value-card p { font-size: 0.85rem; color: var(--bbe-text-light); }

.bbe-team-section { margin-bottom: 70px; }
.bbe-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.bbe-team-card { background: #fff; border: 1px solid var(--bbe-border); border-radius: var(--bbe-radius-lg); padding: 36px 24px; text-align: center; box-shadow: var(--bbe-shadow); transition: var(--bbe-transition); }
.bbe-team-card:hover { transform: translateY(-6px); box-shadow: var(--bbe-shadow-hover); }
.bbe-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bbe-dark), #2d3436);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 16px;
}
.bbe-team-card h4 { font-weight: 700; font-size: 1rem; color: var(--bbe-dark); margin-bottom: 4px; }
.bbe-team-card p { font-weight: 600; font-size: 0.85rem; color: var(--bbe-primary); margin-bottom: 8px; }
.bbe-team-card small { font-size: 0.8rem; color: var(--bbe-text-light); }

/* ---- INFO BOX ---- */
.bbe-info-box { background: #e8f4fd; border: 1px solid #bee3f8; border-radius: var(--bbe-radius); padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start; }
.bbe-info-box i { color: #2980b9; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.bbe-info-box p { font-size: 0.85rem; color: #2c5282; }
.bbe-gallery-info { margin-top: 30px; }

/* ---- FOOTER ---- */
.bbe-footer-cta { background: linear-gradient(135deg, #c0392b, #e74c3c); padding: 50px 0; }
.bbe-footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.bbe-footer-cta-text h3 { color: #fff; font-family: var(--bbe-font-heading); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; margin-bottom: 8px; }
.bbe-footer-cta-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.bbe-footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.bbe-footer { background: #0f0f1e; padding: 70px 0 0; }
.bbe-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.bbe-footer-logo img { height: 80px; width: auto; margin-bottom: 20px; }
.bbe-footer-about { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; }
.bbe-footer-social { display: flex; gap: 10px; }
.bbe-footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: var(--bbe-transition); }
.bbe-footer-social a:hover { background: var(--bbe-primary); color: #fff; }

.bbe-footer-widget-title { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--bbe-primary); display: inline-block; }
.bbe-footer-links { display: flex; flex-direction: column; gap: 10px; }
.bbe-footer-links a, .bbe-footer-links li { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: var(--bbe-transition); display: flex; align-items: center; gap: 8px; }
.bbe-footer-links a:hover { color: var(--bbe-primary); padding-left: 4px; }
.bbe-footer-links i { font-size: 0.7rem; color: var(--bbe-primary); }
.bbe-footer-regions li { cursor: default; }
.bbe-footer-regions i { color: var(--bbe-primary); }

.bbe-footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.bbe-footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.bbe-footer-contact-list i { color: var(--bbe-primary); font-size: 0.9rem; margin-top: 3px; width: 16px; text-align: center; flex-shrink: 0; }
.bbe-footer-contact-list a, .bbe-footer-contact-list span { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; transition: var(--bbe-transition); line-height: 1.4; }
.bbe-footer-contact-list a:hover { color: #fff; }

.bbe-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; margin-top: 0; }
.bbe-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bbe-footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.bbe-footer-seo-text a { color: rgba(255,255,255,0.4); text-decoration: none; }
.bbe-footer-seo-text a:hover { color: var(--bbe-primary); }

/* ---- MAP ---- */
.bbe-map-section { line-height: 0; }

/* ---- ANIMATIONS ---- */
.bbe-animate-fade-in { opacity: 0; animation: bbe-fade-in 0.8s ease forwards; }
.bbe-animate-slide-up { opacity: 0; animation: bbe-slide-up 0.8s ease forwards; }
.bbe-animate-slide-up:nth-child(2) { animation-delay: 0.1s; }
.bbe-animate-slide-up:nth-child(3) { animation-delay: 0.2s; }
.bbe-animate-slide-up:nth-child(4) { animation-delay: 0.3s; }
.bbe-animate-slide-up:nth-child(5) { animation-delay: 0.4s; }
.bbe-animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.bbe-animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@keyframes bbe-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes bbe-slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- MISC ---- */
.bbe-entry-content { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.bbe-entry-content h2, .bbe-entry-content h3 { font-family: var(--bbe-font-heading); font-weight: 800; margin: 1.5em 0 0.5em; }
.bbe-entry-content p { color: var(--bbe-text-light); margin-bottom: 1em; }
.bbe-single-thumb { margin-bottom: 40px; border-radius: var(--bbe-radius-lg); overflow: hidden; }
.bbe-page-content { max-width: 900px; margin: 0 auto; }
.bbe-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bbe-blog-card { background: #fff; border: 1px solid var(--bbe-border); border-radius: var(--bbe-radius-lg); overflow: hidden; box-shadow: var(--bbe-shadow); transition: var(--bbe-transition); }
.bbe-blog-card:hover { transform: translateY(-4px); box-shadow: var(--bbe-shadow-hover); }
.bbe-blog-thumb img { width: 100%; height: 200px; object-fit: cover; }
.bbe-blog-body { padding: 24px; }
.bbe-blog-meta { font-size: 0.8rem; color: var(--bbe-text-light); margin-bottom: 10px; }
.bbe-blog-title { font-family: var(--bbe-font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.bbe-blog-title a { color: var(--bbe-dark); text-decoration: none; }
.bbe-blog-title a:hover { color: var(--bbe-primary); }
.bbe-blog-excerpt { font-size: 0.85rem; color: var(--bbe-text-light); margin-bottom: 16px; }
.bbe-no-posts { text-align: center; padding: 80px 20px; color: var(--bbe-text-light); }
.bbe-no-posts i { font-size: 3rem; margin-bottom: 16px; display: block; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1100px) {
    .bbe-footer-grid { grid-template-columns: 1fr 1fr; }
    .bbe-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .bbe-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .bbe-section { padding: 60px 0; }
    .bbe-why-inner, .bbe-about-story, .bbe-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .bbe-services-grid { grid-template-columns: repeat(2, 1fr); }
    .bbe-regions-grid { grid-template-columns: repeat(3, 1fr); }
    .bbe-values-grid, .bbe-team-grid { grid-template-columns: repeat(2, 1fr); }
    .bbe-regions-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .bbe-contact-top-cards { grid-template-columns: repeat(2, 1fr); }
    .bbe-gallery-grid, .bbe-gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
    .bbe-header-cta { display: none; }
    .bbe-mobile-toggle { display: flex; }
    .bbe-nav { display: none; }
    .bbe-topbar-left { display: none; }
    .bbe-experience-badge { display: none; }
    .bbe-brands-two-col { grid-template-columns: 1fr; }
    .bbe-footer-cta-inner { flex-direction: column; text-align: center; }
    .bbe-process-arrow { display: none; }
    .bbe-process-grid { gap: 16px; }
}

@media (max-width: 600px) {
    .bbe-section { padding: 40px 0; }
    .bbe-strip-grid { grid-template-columns: 1fr; }
    .bbe-hero-content { padding: 80px 16px; }
    .bbe-hero-btns { flex-direction: column; }
    .bbe-hero-stats { gap: 16px; }
    .bbe-services-grid { grid-template-columns: 1fr; }
    .bbe-values-grid, .bbe-team-grid { grid-template-columns: 1fr; }
    .bbe-regions-grid { grid-template-columns: repeat(2, 1fr); }
    .bbe-regions-detail-grid { grid-template-columns: 1fr; }
    .bbe-contact-top-cards { grid-template-columns: 1fr; }
    .bbe-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .bbe-footer-bottom-inner { flex-direction: column; text-align: center; }
    .bbe-contact-form-wrap { padding: 24px 16px; }
    .bbe-form-row { grid-template-columns: 1fr; }
    .bbe-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .bbe-gallery-grid, .bbe-gallery-full-grid { grid-template-columns: 1fr; }
    .bbe-float-label { display: none; }
    .bbe-float-btn { padding: 14px 16px; }
    .bbe-footer-cta-btns { flex-direction: column; width: 100%; }
    .bbe-logo-text { display: none; }
    .bbe-topbar { display: none; }
    .bbe-hero-scroll { display: none; }
    .bbe-lightbox-prev { left: -20px; }
    .bbe-lightbox-next { right: -20px; }
    .bbe-process-step { min-width: 140px; }
    .bbe-section-header { margin-bottom: 40px; }
    .bbe-about-cta { flex-direction: column; }
}

@media (max-width: 400px) {
    .bbe-regions-grid { grid-template-columns: 1fr 1fr; }
    .bbe-hero-stats { gap: 10px; }
    .bbe-stat strong { font-size: 1.5rem; }
}

/* ---- PRINT ---- */
@media print {
    .bbe-float-buttons, .bbe-ticker-bar, .bbe-topbar, .bbe-mobile-menu, .bbe-mobile-toggle { display: none !important; }
}
