/* ═══════════════════════════════════════════════════════════════
   BBCC Public Website — Modern Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
    --brand: #881b12;
    --brand-light: #a82218;
    --brand-dark: #6b140d;
    --brand-bg: #fef3f2;

    --gold: #c9a84c;
    --gold-light: #e8d48b;

    --dark: #1a1a2e;
    --dark-2: #2d2d44;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-400: #ced4da;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    --success: #10b981;
    --info: #3b82f6;
    --warning: #f59e0b;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --transition-fast: all .15s ease;
}

/* ── Base Reset & Typography ── */
*, *::before, *::after { box-sizing: border-box; }

body.bbcc-public {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.bbcc-public h1, .bbcc-public h2, .bbcc-public h3,
.bbcc-public h4, .bbcc-public h5, .bbcc-public h6 {
    font-family: var(--font-body);
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.3;
}

.bbcc-public a { color: var(--brand); text-decoration: none; transition: var(--transition-fast); }
.bbcc-public a:hover { color: var(--brand-dark); text-decoration: none; }
.bbcc-public img { max-width: 100%; height: auto; }

/* ── Utility ── */
.bbcc-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bbcc-section { padding: 100px 0; }
.bbcc-section--gray { background: var(--gray-100); }
.bbcc-section--dark { background: var(--dark); color: var(--white); }
.bbcc-section--brand { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: var(--white); }
.text-brand { color: var(--brand) !important; }
.text-gold  { color: var(--gold) !important; }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header .section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-bg); color: var(--brand); font-weight: 600; font-size: .82rem;
    padding: 6px 18px; border-radius: var(--radius-full); margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: .8px;
}
.section-header h2 {
    font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; color: var(--gray-900);
}
.section-header h2 span { color: var(--brand); }
.section-header p { font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

.bbcc-section--dark .section-header h2 { color: var(--white); }
.bbcc-section--dark .section-header p { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

/* Top Bar */
.bbcc-topbar {
    background: var(--dark);
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    padding: 8px 0;
    letter-spacing: .2px;
}
.bbcc-topbar__inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
.bbcc-topbar__info { display: flex; gap: 24px; align-items: center; }
.bbcc-topbar__info span { display: flex; align-items: center; gap: 6px; }
.bbcc-topbar__info i { color: var(--gold); font-size: .7rem; }
.bbcc-topbar__social { display: flex; gap: 8px; }
.bbcc-topbar__social a {
    width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1); color: #fff; font-size: .75rem; transition: var(--transition-fast);
}
.bbcc-topbar__social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

/* Main Navbar */
.bbcc-navbar {
    background: var(--white);
    padding: 0 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
    transition: var(--transition);
}
.bbcc-navbar__inner {
    display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.bbcc-navbar__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.bbcc-navbar__brand img {
    width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: contain;
}
.bbcc-navbar__brand-text {
    font-weight: 800; font-size: 1.15rem; color: var(--gray-900); line-height: 1.2;
}
.bbcc-navbar__brand-text small { display: block; font-weight: 500; font-size: .72rem; color: var(--gray-600); letter-spacing: .5px; text-transform: uppercase; }

.bbcc-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.bbcc-nav li a {
    display: block; padding: 10px 18px; font-size: .92rem; font-weight: 600; color: var(--gray-700);
    border-radius: var(--radius-sm); transition: var(--transition-fast); position: relative;
}
.bbcc-nav li a:hover { color: var(--brand); background: var(--brand-bg); }
.bbcc-nav li.active a {
    color: var(--brand); background: var(--brand-bg);
}
.bbcc-nav li.active a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px; background: var(--brand); border-radius: 3px;
}

.bbcc-nav__login {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand); color: #fff !important; padding: 10px 24px !important;
    border-radius: var(--radius-full) !important; font-weight: 600 !important; font-size: .88rem !important;
    box-shadow: 0 4px 12px rgba(136,27,18,.3); transition: var(--transition) !important;
}
.bbcc-nav__login:hover {
    background: var(--brand-dark) !important; color: #fff !important;
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(136,27,18,.4);
}

/* Mobile Toggle */
.bbcc-navbar__toggle {
    display: none; background: none; border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer;
    font-size: 1.2rem; color: var(--gray-700); transition: var(--transition-fast);
}
.bbcc-navbar__toggle:hover { border-color: var(--brand); color: var(--brand); }

@media (max-width: 991px) {
    .bbcc-topbar__info { gap: 12px; font-size: .76rem; }
    .bbcc-navbar__toggle { display: flex; }
    .bbcc-nav {
        display: none; position: absolute; top: 80px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 16px 24px;
        box-shadow: var(--shadow-lg); gap: 0; border-top: 1px solid var(--gray-200);
    }
    .bbcc-nav.open { display: flex; }
    .bbcc-nav li a { padding: 14px 16px; border-radius: var(--radius-sm); }
    .bbcc-nav li.active a::after { display: none; }
    .bbcc-nav__login { margin-top: 8px; justify-content: center; }
}
@media (max-width: 576px) {
    .bbcc-topbar { display: none; }
    .bbcc-navbar__inner { height: 68px; }
    .bbcc-navbar__brand img { width: 42px; height: 42px; }
    .bbcc-navbar__brand-text { font-size: 1rem; }
    .bbcc-navbar__brand-text small { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.bbcc-hero {
    position: relative; width: 100%; min-height: 600px; overflow: hidden;
    background: linear-gradient(135deg, #fef3f2 0%, #fff 50%, #f8f9fa 100%);
}
.bbcc-hero__slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity .8s ease;
}
.bbcc-hero__slide.active { opacity: 1; position: relative; }
.bbcc-hero__container {
    display: flex; align-items: center; min-height: 600px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.bbcc-hero__content {
    flex: 1; padding: 60px 0; padding-right: 60px;
}
.bbcc-hero__content .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-bg); color: var(--brand); font-weight: 600; font-size: .8rem;
    padding: 8px 20px; border-radius: var(--radius-full); margin-bottom: 24px;
    border: 1px solid rgba(136,27,18,.15);
}
.bbcc-hero__content .hero-badge i { font-size: .7rem; }
.bbcc-hero__content h1 {
    font-size: 3.2rem; font-weight: 900; color: var(--gray-900); line-height: 1.12;
    margin: 0 0 20px;
}
.bbcc-hero__content h1 span { color: var(--brand); }
.bbcc-hero__content p {
    font-size: 1.15rem; color: var(--gray-600); max-width: 520px; line-height: 1.75; margin: 0 0 32px;
}
.bbcc-hero__image {
    flex: 0 0 45%; position: relative;
}
.bbcc-hero__image img {
    width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.bbcc-hero__image::before {
    content: ''; position: absolute; top: -20px; right: -20px; width: 120px; height: 120px;
    background: var(--brand-bg); border-radius: 50%; z-index: -1;
}
.bbcc-hero__image::after {
    content: ''; position: absolute; bottom: -15px; left: -15px; width: 80px; height: 80px;
    background: var(--gold-light); border-radius: 50%; z-index: -1; opacity: .5;
}

/* Hero Animations */
@keyframes heroFadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroScaleIn { from { opacity:0; transform:scale(1.1); } to { opacity:1; transform:scale(1); } }
.bbcc-hero__slide.active .hero-badge { animation: heroFadeUp .6s .1s both; }
.bbcc-hero__slide.active h1 { animation: heroFadeUp .6s .25s both; }
.bbcc-hero__slide.active p { animation: heroFadeUp .6s .4s both; }
.bbcc-hero__slide.active .bbcc-hero__actions { animation: heroFadeUp .6s .55s both; }
.bbcc-hero__slide.active .bbcc-hero__image img { animation: heroScaleIn 1.2s .2s both; }

/* Hero Dots */
.bbcc-hero__dots {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.bbcc-hero__dots .dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--gray-400);
    cursor: pointer; transition: var(--transition-fast);
}
.bbcc-hero__dots .dot:hover { background: var(--brand-light); }
.bbcc-hero__dots .dot.active { background: var(--brand); width: 28px; border-radius: 10px; }

/* Hero Responsive */
@media (max-width: 991px) {
    .bbcc-hero { min-height: auto; }
    .bbcc-hero__container { flex-direction: column; min-height: auto; padding: 40px 24px; text-align: center; }
    .bbcc-hero__content { padding: 0; padding-right: 0; }
    .bbcc-hero__content h1 { font-size: 2.2rem; }
    .bbcc-hero__content p { max-width: 100%; font-size: 1rem; margin-left: auto; margin-right: auto; }
    .bbcc-hero__image { flex: none; width: 100%; margin-top: 32px; }
    .bbcc-hero__image img { height: 300px; }
    .bbcc-hero__image::before, .bbcc-hero__image::after { display: none; }
    .bbcc-hero__actions { justify-content: center; }
    .bbcc-hero__dots { bottom: 16px; }
}
@media (max-width: 576px) {
    .bbcc-hero__content h1 { font-size: 1.8rem; }
    .bbcc-hero__image img { height: 220px; border-radius: var(--radius-lg); }
}

/* ── Buttons ── */
.bbcc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: .95rem; font-weight: 600; font-family: var(--font-body);
    border: none; border-radius: var(--radius-full); cursor: pointer;
    transition: var(--transition); text-decoration: none; color: inherit;
}
.bbcc-public a.bbcc-btn { text-decoration: none; }
.bbcc-btn--primary,
.bbcc-public a.bbcc-btn--primary {
    background: var(--brand); color: #fff !important; box-shadow: 0 4px 14px rgba(136,27,18,.3);
}
.bbcc-btn--primary:hover,
.bbcc-public a.bbcc-btn--primary:hover {
    background: var(--brand-dark); color: #fff !important; transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(136,27,18,.4);
}
.bbcc-btn--outline,
.bbcc-public a.bbcc-btn--outline {
    background: transparent; color: var(--gray-700); border: 2px solid var(--gray-300);
}
.bbcc-btn--outline:hover,
.bbcc-public a.bbcc-btn--outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.bbcc-btn--white,
.bbcc-public a.bbcc-btn--white { background: #fff; color: var(--brand); box-shadow: var(--shadow-md); }
.bbcc-btn--white:hover,
.bbcc-public a.bbcc-btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--brand-dark); }
.bbcc-btn--sm { padding: 10px 22px; font-size: .85rem; }
.bbcc-btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.bbcc-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════════════════════════ */
.bbcc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bbcc-feature-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: var(--transition); position: relative; overflow: hidden;
}
.bbcc-feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.bbcc-feature-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.bbcc-feature-card:hover::before { transform: scaleX(1); }
.bbcc-feature-card__icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    margin-bottom: 24px; transition: var(--transition);
}
.bbcc-feature-card__icon--brand { background: var(--brand-bg); color: var(--brand); }
.bbcc-feature-card__icon--gold  { background: #faf5e4; color: var(--gold); }
.bbcc-feature-card__icon--info  { background: #eff6ff; color: var(--info); }
.bbcc-feature-card:hover .bbcc-feature-card__icon { transform: scale(1.1); }
.bbcc-feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.bbcc-feature-card p { color: var(--gray-600); font-size: .95rem; line-height: 1.7; margin: 0; }

@media (max-width: 991px) { .bbcc-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bbcc-features { grid-template-columns: 1fr; gap: 20px; } }

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.bbcc-about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bbcc-about__image { position: relative; }
.bbcc-about__image img {
    width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.bbcc-about__image .experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--brand); color: #fff; padding: 20px 28px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); text-align: center;
}
.bbcc-about__image .experience-badge .num { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
.bbcc-about__image .experience-badge .label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }
.bbcc-about__content {}
.bbcc-about__content .section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-bg); color: var(--brand); font-weight: 600; font-size: .82rem;
    padding: 6px 18px; border-radius: var(--radius-full); margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: .8px;
}
.bbcc-about__content h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.bbcc-about__content h2 span { color: var(--brand); }
.bbcc-about__content .subtitle { font-size: 1.1rem; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.bbcc-about__content p { color: var(--gray-600); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.bbcc-about__content .vision-mission {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.bbcc-about__content .vm-card {
    padding: 20px; background: var(--gray-100); border-radius: var(--radius-md);
    border-left: 4px solid var(--brand);
}
.bbcc-about__content .vm-card h4 {
    font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
    color: var(--brand); margin-bottom: 8px;
}
.bbcc-about__content .vm-card p { font-size: .9rem; margin: 0; color: var(--gray-600); }

@media (max-width: 991px) {
    .bbcc-about { grid-template-columns: 1fr; gap: 40px; }
    .bbcc-about__image img { height: 320px; }
    .bbcc-about__image .experience-badge { right: 10px; bottom: -15px; }
}
@media (max-width: 576px) {
    .bbcc-about__content h2 { font-size: 1.8rem; }
    .bbcc-about__content .vision-mission { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   EVENT CARDS (HOME)
   ═══════════════════════════════════════════════════════════════ */
.bbcc-events-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; }
.bbcc-event-card {
    display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: var(--transition); text-decoration: none; width: calc(33.333% - 22px); min-width: 280px;
}
.bbcc-event-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.bbcc-event-card__image {
    width: 100%; aspect-ratio: 4 / 3; overflow: hidden; position: relative;
}
.bbcc-event-card__image img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.bbcc-event-card:hover .bbcc-event-card__image img { transform: scale(1.08); }
.bbcc-event-card__body { flex: 1; padding: 24px; display: flex; flex-direction: column; }
.bbcc-event-card__date {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .78rem; font-weight: 600; color: var(--brand); margin-bottom: 8px;
}
.bbcc-event-card__date i { font-size: .68rem; }
.bbcc-event-card__body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.bbcc-event-card__body p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; flex: 1; margin: 0 0 16px; }
.bbcc-event-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 600; color: var(--brand);
}
.bbcc-event-card__link i { transition: transform .2s; font-size: .7rem; }
.bbcc-event-card:hover .bbcc-event-card__link i { transform: translateX(4px); }

@media (max-width: 576px) {
    .bbcc-events-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   STATS / COUNTER BAND
   ═══════════════════════════════════════════════════════════════ */
.bbcc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 60px 0; }
.bbcc-stat { text-align: center; }
.bbcc-stat__number {
    font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px;
}
.bbcc-stat__label { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { .bbcc-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════ */
.bbcc-cta {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 80px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.bbcc-cta::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
    border-radius: 50%; background: rgba(255,255,255,.05);
}
.bbcc-cta h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; color: #fff; }
.bbcc-cta p { font-size: 1.1rem; opacity: .9; max-width: 550px; margin: 0 auto 32px; }

/* ═══════════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════════════ */
.bbcc-team-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
}
.bbcc-team-card {
    background: var(--white); border-radius: 20px; overflow: visible;
    box-shadow: 0 8px 32px rgba(0,0,0,.07); border: none;
    transition: var(--transition); text-align: center;
    padding: 48px 32px 36px; position: relative;
    width: 280px; max-width: 100%;
}
.bbcc-team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(136,27,18,.12); }
.bbcc-team-card__photo {
    width: 150px; height: 150px; border-radius: 50%; overflow: hidden;
    margin: 0 auto 20px; border: 4px solid var(--white);
    box-shadow: 0 6px 24px rgba(136,27,18,.15);
    position: relative;
}
.bbcc-team-card__photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.bbcc-team-card:hover .bbcc-team-card__photo img { transform: scale(1.08); }
.bbcc-team-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700; color: var(--gray-900);
    margin-bottom: 6px;
}
.bbcc-team-card__role {
    font-size: .85rem; font-weight: 600; color: var(--brand);
    text-transform: uppercase; letter-spacing: 1.2px;
}
.bbcc-team-card__accent {
    width: 40px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
    margin: 16px auto 0;
}

@media (max-width: 991px) { .bbcc-team-grid { gap: 32px; } }
@media (max-width: 576px) { .bbcc-team-card { width: 260px; padding: 40px 24px 28px; } }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.bbcc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.bbcc-contact-form {}
.bbcc-contact-form .form-group { margin-bottom: 20px; }
.bbcc-contact-form label {
    display: block; font-size: .82rem; font-weight: 600; color: var(--gray-700);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px;
}
.bbcc-contact-form label i { color: var(--brand); margin-right: 4px; font-size: .7rem; }
.bbcc-contact-form input,
.bbcc-contact-form textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
    font-size: .95rem; font-family: var(--font-body); color: var(--gray-900);
    background: var(--white); transition: var(--transition-fast);
}
.bbcc-contact-form input:focus,
.bbcc-contact-form textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(136,27,18,.08);
}
.bbcc-contact-form textarea { min-height: 160px; resize: vertical; }

.bbcc-contact-info { display: flex; flex-direction: column; gap: 24px; }
.bbcc-contact-info__card {
    display: flex; align-items: flex-start; gap: 16px; padding: 24px;
    background: var(--gray-100); border-radius: var(--radius-md); transition: var(--transition);
}
.bbcc-contact-info__card:hover { background: var(--brand-bg); }
.bbcc-contact-info__icon {
    width: 52px; height: 52px; border-radius: var(--radius-md); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand); color: #fff; font-size: 1.1rem;
}
.bbcc-contact-info__text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.bbcc-contact-info__text p { font-size: .92rem; color: var(--gray-600); margin: 0; }

@media (max-width: 991px) { .bbcc-contact-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (Breadcrumb pages)
   ═══════════════════════════════════════════════════════════════ */
.bbcc-page-hero {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 40px 0 60px; text-align: center; position: relative; color: #fff;
}
.bbcc-page-hero::after {
    content: ''; position: absolute; bottom: -30px; left: 0; right: 0; height: 60px;
    background: var(--gray-100); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.bbcc-page-hero__content { position: relative; z-index: 1; }
.bbcc-page-hero h1 {
    font-size: 1.7rem; font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.bbcc-page-hero__subtitle {
    font-size: .92rem; opacity: .9; margin: 0;
}
.bbcc-page-hero__breadcrumb {
    display: flex; justify-content: center; gap: 8px; align-items: center;
    list-style: none; padding: 0; margin: 10px 0 0;
}
.bbcc-page-hero__breadcrumb li { font-size: .85rem; color: rgba(255,255,255,.6); }
.bbcc-page-hero__breadcrumb li a { color: rgba(255,255,255,.8); }
.bbcc-page-hero__breadcrumb li a:hover { color: #fff; }
.bbcc-page-hero__breadcrumb li.sep { color: rgba(255,255,255,.3); }

@media (max-width: 576px) { .bbcc-page-hero h1 { font-size: 1.4rem; } .bbcc-page-hero { padding: 30px 0 50px; } }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.bbcc-footer {
    background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 0;
}
.bbcc-footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.bbcc-footer__brand h3 { color: var(--white); font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.bbcc-footer__brand p { font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.bbcc-footer__social { display: flex; gap: 10px; }
.bbcc-footer__social a {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition-fast);
}
.bbcc-footer__social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.bbcc-footer__col h4 {
    color: var(--white); font-size: .9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .8px; margin-bottom: 20px;
}
.bbcc-footer__col ul { list-style: none; padding: 0; margin: 0; }
.bbcc-footer__col ul li { margin-bottom: 10px; }
.bbcc-footer__col ul li a {
    color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition-fast);
}
.bbcc-footer__col ul li a:hover { color: var(--white); padding-left: 4px; }
.bbcc-footer__bottom {
    text-align: center; padding: 20px 0; font-size: .82rem; color: rgba(255,255,255,.4);
}
.bbcc-footer__bottom p { margin: 0; line-height: 1.6; }
.bbcc-footer__credit {
    margin-top: 6px !important; font-size: .78rem; color: rgba(255,255,255,.3);
}
.bbcc-footer__credit a {
    color: var(--gold); text-decoration: none; transition: var(--transition-fast);
}
.bbcc-footer__credit a:hover {
    color: #fff; text-decoration: underline;
}

@media (max-width: 991px) { .bbcc-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .bbcc-footer__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE — EXTENDED
   ═══════════════════════════════════════════════════════════════ */
.bbcc-services-extended { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bbcc-service-card-ext {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
    text-align: center; padding: 48px 32px;
}
.bbcc-service-card-ext:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bbcc-service-card-ext__icon {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-bg); color: var(--brand); font-size: 1.8rem;
    transition: var(--transition);
}
.bbcc-service-card-ext:hover .bbcc-service-card-ext__icon {
    background: var(--brand); color: #fff; transform: rotateY(180deg);
}
.bbcc-service-card-ext h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.bbcc-service-card-ext p { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

@media (max-width: 991px) { .bbcc-services-extended { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bbcc-services-extended { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   MISC / TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Scroll to top */
.bbcc-scrolltop {
    position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--brand); color: #fff; display: none; align-items: center; justify-content: center;
    font-size: 1.1rem; box-shadow: var(--shadow-md); cursor: pointer; z-index: 999;
    transition: var(--transition); border: none;
}
.bbcc-scrolltop:hover { background: var(--brand-dark); transform: translateY(-3px); }
.bbcc-scrolltop.show { display: flex; }
