@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* ==========================================================================
   BBS Design System — Bombay Beats Studios
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
    --bbs-gold: #FFB800;
    --bbs-gold-light: #FFCB45;
    --bbs-gold-dark: #E5A600;
    --bbs-dark: #0a0a0a;
    --bbs-dark-2: #111111;
    --bbs-dark-3: #1a1a1a;
    --bbs-dark-4: #222222;
    --bbs-dark-5: #2a2a2a;
    --bbs-light: #ffffff;
    --bbs-light-2: #f8f9fa;
    --bbs-light-3: #f0f0f0;
    --bbs-gray: #888888;
    --bbs-gray-light: #cccccc;
    --bbs-gray-dark: #555555;
    --bbs-text-dark: #1a1a1a;
    --bbs-text-light: #ffffff;
    --bbs-text-muted: #999999;
    --bbs-font-heading: 'Outfit', sans-serif;
    --bbs-font-body: 'Inter', sans-serif;
    --bbs-transition: all 0.3s ease;
    --bbs-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --bbs-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --bbs-radius: 12px;
    --bbs-radius-lg: 20px;
    --bbs-radius-pill: 50px;
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bbs-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bbs-text-dark);
    background: var(--bbs-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bbs-font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--bbs-gold);
    text-decoration: none;
    transition: var(--bbs-transition);
}

a:hover {
    color: var(--bbs-gold-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bbs-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bbs-dark-3);
    border-top-color: var(--bbs-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Navbar --- */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 20px 0;
    transition: var(--bbs-transition);
    background: transparent;
}

.navbar-logo {
    height: 75px;
    max-height: 75px;
    width: auto;
    transition: height 0.3s ease, max-height 0.3s ease;
}

.navbar-main.navbar-scrolled .navbar-logo {
    height: 50px;
    max-height: 50px;
}

.footer-logo {
    height: 60px;
    max-height: 60px;
    width: auto;
}

.navbar-main.navbar-scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-main .navbar-brand {
    font-family: var(--bbs-font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bbs-text-light) !important;
    letter-spacing: -0.5px;
}

.navbar-main .navbar-brand span {
    color: var(--bbs-gold);
}

.navbar-main .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: var(--bbs-transition);
    position: relative;
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--bbs-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--bbs-gold) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    color: var(--bbs-text-light);
    font-size: 1.5rem;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* --- Buttons --- */
.btn-bbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--bbs-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--bbs-radius-pill);
    transition: var(--bbs-transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-bbs-primary {
    background: var(--bbs-gold);
    color: var(--bbs-dark);
    border-color: var(--bbs-gold);
}

.btn-bbs-primary:hover {
    background: var(--bbs-gold-dark);
    border-color: var(--bbs-gold-dark);
    color: var(--bbs-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.btn-bbs-outline {
    background: transparent;
    color: var(--bbs-text-light);
    border-color: var(--bbs-text-light);
}

.btn-bbs-outline:hover {
    background: var(--bbs-text-light);
    color: var(--bbs-dark);
    transform: translateY(-3px);
}

.btn-bbs-outline-dark {
    background: transparent;
    color: var(--bbs-dark);
    border-color: var(--bbs-dark);
}

.btn-bbs-outline-dark:hover {
    background: var(--bbs-dark);
    color: var(--bbs-text-light);
    transform: translateY(-3px);
}

.btn-bbs-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-bbs-lg {
    padding: 18px 42px;
    font-size: 1rem;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-dark {
    background: var(--bbs-dark);
    color: var(--bbs-text-light);
}

.section-dark-2 {
    background: var(--bbs-dark-2);
    color: var(--bbs-text-light);
}

.section-dark-3 {
    background: var(--bbs-dark-3);
    color: var(--bbs-text-light);
}

.section-light {
    background: var(--bbs-light);
    color: var(--bbs-text-dark);
}

.section-light-2 {
    background: var(--bbs-light-2);
    color: var(--bbs-text-dark);
}

/* --- Section Titles --- */
.section-title {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--bbs-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bbs-gold);
    margin-bottom: 12px;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-dark .section-heading {
    color: var(--bbs-text-light);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--bbs-gray);
    max-width: 600px;
}

.section-title.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bbs-dark);
    overflow: hidden;
    padding-top: 120px; /* Space for fixed header with larger logo */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bbs-text-light);
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--bbs-font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--bbs-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title span {
    color: var(--bbs-gold);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Particles / Sound Waves */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -10px;
    left: -5%;
    width: 110%;
    height: 100%;
    animation: wave 8s linear infinite;
}

.hero-wave:nth-child(2) {
    animation-delay: -2s;
    opacity: 0.5;
}

.hero-wave:nth-child(3) {
    animation-delay: -4s;
    opacity: 0.3;
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-2%) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bbs-dark);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(10,10,10,0.7));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--bbs-text-light);
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-title span {
    color: var(--bbs-gold);
}

.page-hero-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
    color: var(--bbs-gray);
}

.page-hero-breadcrumb a {
    color: var(--bbs-gray-light);
}

.page-hero-breadcrumb a:hover {
    color: var(--bbs-gold);
}

.page-hero-breadcrumb .breadcrumb-item.active {
    color: var(--bbs-gold);
}

.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb .separator {
    color: var(--bbs-gold);
}

/* --- Cards --- */
.bbs-card {
    background: var(--bbs-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--bbs-radius-lg);
    overflow: hidden;
    transition: var(--bbs-transition);
    box-shadow: var(--bbs-shadow);
    height: 100%;
}

.bbs-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bbs-shadow-lg);
}

.bbs-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.bbs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bbs-card:hover .bbs-card-img img {
    transform: scale(1.08);
}

.bbs-card-body {
    padding: 28px;
}

.bbs-card-title {
    font-family: var(--bbs-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bbs-card-title a {
    color: var(--bbs-text-dark);
}

.bbs-card-title a:hover {
    color: var(--bbs-gold);
}

.bbs-card-text {
    color: var(--bbs-gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Dark Card Variant */
.bbs-card-dark {
    background: var(--bbs-dark-3);
    border-color: rgba(255, 255, 255, 0.05);
}

.bbs-card-dark .bbs-card-title,
.bbs-card-dark .bbs-card-title a {
    color: var(--bbs-text-light);
}

.bbs-card-dark .bbs-card-text {
    color: var(--bbs-gray);
}

/* --- Service Card --- */
.service-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--bbs-light);
    border-radius: var(--bbs-radius-lg);
    transition: var(--bbs-transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bbs-shadow-lg);
    border-color: var(--bbs-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(255,184,0,0.05));
    color: var(--bbs-gold);
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--bbs-transition);
}

.service-card:hover .service-icon {
    background: var(--bbs-gold);
    color: var(--bbs-dark);
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--bbs-gray-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* --- Team Card --- */
.team-card {
    position: relative;
    border-radius: var(--bbs-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--bbs-transition);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card-img {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: var(--bbs-transition);
}

.team-card:hover .team-card-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 100%);
}

.team-card-body {
    padding: 24px;
    background: var(--bbs-light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-family: var(--bbs-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-name a {
    color: var(--bbs-text-dark);
}

.team-card-name a:hover {
    color: var(--bbs-gold);
}

.team-card-role {
    color: var(--bbs-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.team-card-bio {
    color: var(--bbs-gray-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-card-social {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--bbs-transition);
    justify-content: center;
}

.team-card:hover .team-card-social {
    opacity: 1;
    transform: translateY(0);
}

.team-card-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--bbs-text-light);
    transition: var(--bbs-transition);
}

.team-card-social a:hover {
    background: var(--bbs-gold);
    color: var(--bbs-dark);
}

/* --- Product Card --- */
.product-card {
    background: var(--bbs-light);
    border-radius: var(--bbs-radius-lg);
    overflow: hidden;
    transition: var(--bbs-transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bbs-shadow-lg);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--bbs-light-2);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bbs-gold);
    color: var(--bbs-dark);
    padding: 4px 14px;
    border-radius: var(--bbs-radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card-body {
    padding: 24px;
}

.product-category-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bbs-gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-title {
    font-family: var(--bbs-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card-title a {
    color: var(--bbs-text-dark);
}

.product-card-title a:hover {
    color: var(--bbs-gold);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-price .current {
    font-family: var(--bbs-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bbs-gold);
}

.product-price .original {
    font-size: 0.95rem;
    color: var(--bbs-gray);
    text-decoration: line-through;
}

/* --- Testimonial --- */
.testimonial-card {
    background: var(--bbs-light);
    border-radius: var(--bbs-radius-lg);
    padding: 40px;
    box-shadow: var(--bbs-shadow);
    height: 100%;
}

.testimonial-stars {
    color: var(--bbs-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bbs-gray-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bbs-gold);
}

.testimonial-name {
    font-family: var(--bbs-font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--bbs-gray);
}

/* --- Stats / Counter --- */
.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-family: var(--bbs-font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bbs-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--bbs-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--bbs-dark);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,184,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bbs-text-light);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--bbs-gray);
    margin: 0 auto 40px;
    max-width: 550px;
}

/* --- Footer --- */
.footer {
    background: var(--bbs-dark);
    color: var(--bbs-text-light);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    font-family: var(--bbs-font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bbs-text-light);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand span {
    color: var(--bbs-gold);
}

.footer-desc {
    color: var(--bbs-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-title {
    font-family: var(--bbs-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bbs-text-light);
    margin-bottom: 24px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--bbs-gold);
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--bbs-gray);
    font-size: 0.95rem;
    transition: var(--bbs-transition);
}

.footer-links a:hover {
    color: var(--bbs-gold);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--bbs-gold);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-text {
    color: var(--bbs-gray);
    font-size: 0.95rem;
}

.footer-contact-text a {
    color: var(--bbs-gray);
}

.footer-contact-text a:hover {
    color: var(--bbs-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bbs-text-light);
    transition: var(--bbs-transition);
}

.footer-social a:hover {
    background: var(--bbs-gold);
    color: var(--bbs-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: var(--bbs-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--bbs-gold);
}

/* --- Back to Top --- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bbs-gold);
    color: var(--bbs-dark);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--bbs-transition);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--bbs-gold-dark);
    transform: translateY(-3px);
}

/* --- Blog Card --- */
.blog-card {
    background: var(--bbs-light);
    border-radius: var(--bbs-radius-lg);
    overflow: hidden;
    transition: var(--bbs-transition);
    height: 100%;
    box-shadow: var(--bbs-shadow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bbs-shadow-lg);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--bbs-gray);
    margin-bottom: 12px;
}

.blog-card-meta i {
    color: var(--bbs-gold);
    margin-right: 4px;
}

.blog-card-title {
    font-family: var(--bbs-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--bbs-text-dark);
}

.blog-card-title a:hover {
    color: var(--bbs-gold);
}

.blog-card-excerpt {
    color: var(--bbs-gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bbs-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-more:hover {
    color: var(--bbs-gold-dark);
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--bbs-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--bbs-font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 28px;
    background: var(--bbs-light);
    color: var(--bbs-text-dark);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bbs-dark);
    color: var(--bbs-gold);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\F2EA';
    color: var(--bbs-gold);
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 20px 28px 28px;
    color: var(--bbs-gray-dark);
    line-height: 1.8;
}

/* --- Forms --- */
.bbs-form .form-control,
.bbs-form .form-select {
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--bbs-radius);
    font-size: 0.95rem;
    transition: var(--bbs-transition);
    background: var(--bbs-light);
}

.bbs-form .form-control:focus,
.bbs-form .form-select:focus {
    border-color: var(--bbs-gold);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}

.bbs-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bbs-text-dark);
    margin-bottom: 8px;
}

.bbs-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Dark Form */
.bbs-form-dark .form-control,
.bbs-form-dark .form-select {
    background: var(--bbs-dark-3);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--bbs-text-light);
}

.bbs-form-dark .form-control::placeholder {
    color: var(--bbs-gray);
}

.bbs-form-dark .form-label {
    color: var(--bbs-gray-light);
}

/* --- Pagination --- */
.bbs-pagination .page-link {
    border: none;
    padding: 10px 18px;
    margin: 0 4px;
    border-radius: var(--bbs-radius);
    color: var(--bbs-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--bbs-transition);
}

.bbs-pagination .page-link:hover,
.bbs-pagination .page-item.active .page-link {
    background: var(--bbs-gold);
    color: var(--bbs-dark);
}

/* --- Gold Divider --- */
.divider-gold {
    width: 50px;
    height: 3px;
    background: var(--bbs-gold);
    margin: 16px 0;
}

.divider-gold.center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Marquee --- */
.marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
    padding: 25px 0;
    background: var(--bbs-dark-3);
}

.marquee-track {
    display: inline-flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--bbs-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 5px;
    white-space: nowrap;
}

.marquee-item span {
    color: rgba(255, 184, 0, 0.15);
    margin: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Admin Styles --- */
.admin-sidebar {
    min-height: 100vh;
    background: var(--bbs-dark);
    color: var(--bbs-text-light);
    width: 260px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--bbs-transition);
}

.admin-sidebar .nav-link {
    color: var(--bbs-gray);
    padding: 12px 24px;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: var(--bbs-transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--bbs-gold);
    background: rgba(255, 184, 0, 0.05);
    border-left-color: var(--bbs-gold);
}

.admin-sidebar .nav-link i {
    width: 24px;
    margin-right: 10px;
}

.admin-content {
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
    background: var(--bbs-light-2);
}

.admin-topbar {
    background: var(--bbs-light);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 30px;
    margin: -30px -30px 30px;
}

.admin-card {
    background: var(--bbs-light);
    border-radius: var(--bbs-radius);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.admin-stat-card {
    text-align: center;
    padding: 30px;
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bbs-radius);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* --- Mission Card --- */
.mission-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--bbs-transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--bbs-gold);
}

.mission-card-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bbs-radius);
    background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(255,184,0,0.05));
    color: var(--bbs-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card-text {
    color: var(--bbs-gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--bbs-gray-dark);
    margin-bottom: 10px;
}

.mission-card-list li i {
    color: var(--bbs-gold);
    font-size: 1.1rem;
}

/* --- Section Badge --- */
.section-badge {
    display: inline-block;
    font-family: var(--bbs-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bbs-gold);
    margin-bottom: 15px;
}

/* --- About Teaser Image & Badge --- */
.about-teaser-img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-teaser-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 15px 25px;
    border-radius: var(--bbs-radius);
    box-shadow: var(--bbs-shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.about-teaser-badge-number {
    font-family: var(--bbs-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bbs-gold);
    line-height: 1;
}

.about-teaser-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bbs-text-light);
    margin-top: 5px;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@media (max-width: 576px) {
    .about-teaser-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 15px;
        display: inline-flex;
        flex-direction: row;
        gap: 10px;
        padding: 10px 20px;
        backdrop-filter: none;
        background: var(--bbs-dark-3);
    }
    
    .about-teaser-badge-text {
        margin-top: 0;
    }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .hero-title { font-size: 4rem; }
    .section-heading { font-size: 2.4rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3.2rem; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .section { padding: 70px 0; }
    .page-hero { padding: 140px 0 80px; }
    .page-hero-title { font-size: 2.8rem; }
    
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.active { transform: translateX(0); }
    .admin-content { margin-left: 0; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-text { font-size: 1rem; }
    .section-heading { font-size: 2rem; }
    .section { padding: 60px 0; }
    .stat-number { font-size: 2.5rem; }
    .cta-title { font-size: 2.2rem; }
    .page-hero-title { font-size: 2.2rem; }
    
    .footer { padding-top: 60px; }
    
    .navbar-main .offcanvas {
        background: var(--bbs-dark);
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 3px; }
    .section-heading { font-size: 1.7rem; }
    .btn-bbs { padding: 12px 24px; font-size: 0.85rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
