/* =============================================
   Bar Association Bagru – Red & Blue Theme
   ============================================= */

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

:root {
    /* ── Red & Blue Palette ── */
    --red:        #C0152A;
    --red-dk:     #8B0D1C;
    --red-lt:     #E01E35;
    --blue:       #1A3A8F;
    --blue-dk:    #0F2468;
    --blue-lt:    #2451B3;
    --blue-pale:  #EBF0FF;
    --white:      #FFFFFF;
    --off-white:  #F8F9FD;
    --dark:       #1C1C2E;
    --gray:       #5A5A72;
    --light-gray: #F0F2F8;
    --shadow-sm:  0 2px 12px rgba(26,58,143,0.10);
    --shadow:     0 6px 28px rgba(26,58,143,0.14);
    --shadow-red: 0 6px 24px rgba(192,21,42,0.22);
    --radius:     10px;
    --radius-lg:  16px;
    --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.75;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── Top Bar ─────────────────────────────── */
.top-bar {
    background: linear-gradient(90deg, var(--blue-dk) 0%, var(--red-dk) 100%);
    color: rgba(255,255,255,0.88);
    padding: 7px 0;
    font-size: 13px;
}
.top-bar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.top-bar span { margin-right: 18px; }
.top-bar i { margin-right: 5px; color: rgba(255,255,255,0.65); }

/* ── Header ──────────────────────────────── */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(26,58,143,0.10);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 3px solid var(--red);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 14px 0; gap: 20px;
}
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo-icon {
    font-size: 2.8rem;
    color: var(--red);
    line-height: 1;
}
.logo-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--blue-dk) !important;
    font-weight: 700;
    line-height: 1.2;
    background: none !important;
    -webkit-text-fill-color: var(--blue-dk) !important;
}
.logo-text p { font-size: 11px; color: var(--gray); }

/* Nav */
.main-nav ul { display: flex; gap: 2px; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    padding: 8px 13px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    border-radius: 6px;
    transition: var(--transition);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--red);
    background: var(--blue-pale);
}
.main-nav ul li a.active {
    color: var(--blue);
    border-bottom: 2px solid var(--red);
    border-radius: 6px 6px 0 0;
}

/* Dropdown */
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: var(--white);
    min-width: 230px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--blue);
    display: none; z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #eef1f9;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--blue); background: var(--blue-pale); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--blue); border-radius: 2px; }

/* ── Buttons ─────────────────────────────── */
.btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
    -webkit-text-fill-color: var(--white) !important;
}
.btn-primary:hover {
    background: var(--red-dk) !important;
    border-color: var(--red-dk) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-download { background: var(--blue-pale); color: var(--blue); border-color: var(--blue); font-size: 13px; padding: 8px 18px; }
.btn-download:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
.text-center { text-align: center; margin-top: 2rem; }

/* ── Section Basics ──────────────────────── */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    color: var(--blue-dk);
    margin-bottom: 0.6rem;
}
.section-header p { color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ── Hero ────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--blue-dk);
}
.hero-section::before {
    content: '⚖';
    position: absolute;
    font-size: 400px;
    opacity: 0.05;
    right: -60px; top: -80px;
    color: var(--white);
    pointer-events: none;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(10,37,104,.90) 0%, rgba(139,13,28,.72) 100%);
}
.hero-slides { width: 100%; }
.hero-slide { position: relative; padding: 100px 0; }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-left: 20px; }
.hero-content h2 {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-content p { color: rgba(255,255,255,0.78); font-size: 15px; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Quick Links ─────────────────────────── */
.quick-links-section {
    background: linear-gradient(90deg, var(--blue-dk) 0%, var(--blue) 50%, var(--red-dk) 100%) !important;
    padding: 0;
}
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 30px 20px;
    color: var(--white);
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
    gap: 10px;
}
.quick-card:last-child { border-right: none; }
.quick-card i { font-size: 1.8rem; color: rgba(255,255,255,0.85); }
.quick-card span { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
.quick-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }
.quick-card:hover i { color: #fff; }

/* ── About Section ───────────────────────── */
.about-section { padding: 84px 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--blue-dk);
    margin-bottom: 1rem;
}
.about-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--blue) !important;
    -webkit-text-fill-color: var(--blue) !important;
    font-weight: 700;
}
.stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* ── Office Bearers Preview ──────────────── */
.bearers-section { padding: 84px 0; }
.bearers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 2rem; }
.bearer-card {
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid #dce4f5;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.bearer-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow); }
.bearer-photo { width: 100%; height: 200px; object-fit: cover; display: block; }
.bearer-icon {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--blue-pale);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    border: 2.5px solid var(--blue);
}
.bearer-icon i { font-size: 1.7rem; color: var(--blue) !important; }
.bearer-body { padding: 18px 16px 22px; }
.bearer-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--blue-dk);
    margin: 0 0 6px;
}
.bearer-card p { font-size: 13px; color: var(--gray); margin: 0; }

/* ── News Section ────────────────────────── */
.news-section { padding: 84px 0; background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--blue);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-top-color: var(--red); }
.news-thumb { height: 165px; background-size: cover; background-position: center; }
.news-body { padding: 20px 22px; }
.news-date { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; color: var(--gray); font-size: 13px; }
.news-date span {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--red);
    font-weight: 700; line-height: 1;
}
.news-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.news-card p { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.read-more {
    font-size: 13px; font-weight: 700;
    color: var(--blue) !important;
    display: flex; align-items: center; gap: 6px;
    -webkit-text-fill-color: var(--blue) !important;
}
.read-more:hover { color: var(--red) !important; -webkit-text-fill-color: var(--red) !important; }

/* ── Page Banner ─────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 60%, var(--red-dk) 100%);
    padding: 58px 0;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '⚖';
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    font-size: 200px; opacity: 0.07; color: var(--white);
}
.page-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; color: var(--white); margin-bottom: 8px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── About Detail ────────────────────────── */
.about-detail-section { padding: 70px 0; }
.about-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 54px; }
.about-main h2 { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; color: var(--blue-dk); margin-bottom: 1rem; }
.about-main p { color: var(--gray); margin-bottom: 1rem; }
.info-box {
    background: var(--blue-pale);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-top: 1.5rem;
}
.info-box p { color: var(--gray); font-size: 14px; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.info-table tr { border-bottom: 1px solid #dce4f5; }
.info-table td { padding: 8px 12px; font-size: 13px; color: var(--dark); }
.info-table td:first-child { font-weight: 700; color: var(--blue); width: 40%; }
.bearers-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1rem; }
.bearer-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--dark);
    padding: 8px; border-radius: 6px;
    background: var(--blue-pale);
}
.bearer-item i { color: var(--red); font-size: 10px; }
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border-top: 4px solid var(--blue);
}
.sidebar-card.highlight { background: linear-gradient(135deg, var(--blue-dk), var(--blue)); color: var(--white); border-top-color: var(--red); }
.sidebar-card.highlight h3 { color: rgba(255,255,255,0.9); }
.sidebar-card.highlight p { color: rgba(255,255,255,0.80); }
.sidebar-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: var(--blue-dk); margin-bottom: 12px; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li { font-size: 13px; color: var(--gray); padding-left: 14px; position: relative; }
.sidebar-card ul li::before { content: '•'; color: var(--red); position: absolute; left: 0; }

/* ── Judges ──────────────────────────────── */
.judges-section { padding: 70px 0; }
.judges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.judge-card {
    text-align: center; padding: 38px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--blue);
    transition: var(--transition);
}
.judge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-bottom-color: var(--red); }
.judge-avatar {
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--blue-pale);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid var(--blue);
}
.judge-avatar i { font-size: 2rem; color: var(--blue); }
.judge-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.judge-court { font-size: 13px; color: var(--red); font-weight: 700; }
.judge-since { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ── Downloads ───────────────────────────── */
.downloads-section { padding: 70px 0; }
.downloads-list { display: flex; flex-direction: column; gap: 14px; }
.download-item {
    display: flex; align-items: center; gap: 22px;
    background: var(--white); border-radius: var(--radius-lg);
    padding: 20px 26px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--blue);
    transition: var(--transition);
}
.download-item:hover { box-shadow: var(--shadow); border-left-color: var(--red); transform: translateX(4px); }
.download-icon { font-size: 2rem; color: var(--red); flex-shrink: 0; }
.download-info { flex: 1; }
.download-info h3 { font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.download-info p { font-size: 12px; color: var(--gray); }

/* ── Office Bearers Table ────────────────── */
.bearers-detail-section { padding: 70px 0; }
.bearers-table-wrap { overflow-x: auto; }
.bearers-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
.bearers-table thead tr {
    background: linear-gradient(90deg, var(--blue-dk), var(--blue));
    color: var(--white);
}
.bearers-table th { padding: 15px 16px; text-align: left; font-size: 14px; font-weight: 700; }
.bearers-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid #dce4f5; }
.bearers-table tbody tr:hover { background: var(--blue-pale); }
.badge { padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.badge-gold { background: var(--red); color: var(--white); }
.badge-silver { background: var(--blue-pale); color: var(--blue); }
.signatures-section { margin-top: 3rem; }
.signatures-section h3 { font-family: 'Montserrat', sans-serif; color: var(--blue-dk); margin-bottom: 1.5rem; }
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 600px; }
.sig-card { text-align: center; }
.sig-line { border-bottom: 2px solid var(--blue); margin-bottom: 8px; height: 50px; }
.sig-card p { font-size: 13px; color: var(--gray); font-weight: 700; }

/* ── Contact ─────────────────────────────── */
.contact-section { padding: 70px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; color: var(--blue-dk); margin-bottom: 1.5rem; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.contact-card i { font-size: 1.2rem; color: var(--red); margin-top: 3px; flex-shrink: 0; }
.contact-card h4 { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; margin-bottom: 3px; }
.contact-card p { font-size: 14px; color: var(--gray); }
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue);
}
.contact-form-wrap h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; color: var(--blue-dk); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #ccd5ee;
    border-radius: var(--radius);
    font-size: 14px; font-family: 'Montserrat', sans-serif;
    transition: var(--transition); background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,143,0.10); }
.form-control.is-invalid { border-color: var(--red); }
.invalid-feedback { font-size: 12px; color: var(--red); margin-top: 4px; display: block; }
.alert-success { background: #e8f5e9; color: #2e7d32; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 1rem; border-left: 4px solid #2e7d32; font-size: 14px; }

/* ── Footer ──────────────────────────────── */
.main-footer {
    background: linear-gradient(180deg, var(--blue-dk) 0%, #080f2a 100%);
    color: rgba(255,255,255,0.8);
}
.footer-top { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; }
.footer-col h3 { font-family: 'Montserrat', sans-serif; color: rgba(255,255,255,0.95); font-size: 1.05rem; margin-bottom: 14px; }
.footer-col p { font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.footer-col ul li { font-size: 13px; margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    background: var(--red-dk);
    padding: 16px 0; text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── News Slider ─────────────────────────── */
.news-slider { position: relative; }
.news-track { display: flex; gap: 24px; transition: transform .7s ease; }
.news-card { flex: 0 0 calc(33.333% - 16px); background: #fff; padding: 0 !important; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.news-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--blue); color: #fff; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 2; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.news-arrow:hover { background: var(--red); }
.news-arrow-left { left: -18px; }
.news-arrow-right { right: -18px; }

/* ── Hero Dots ───────────────────────────── */
.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.40); cursor: pointer; transition: .3s; }
.hero-dot.active { background: var(--red); width: 28px; border-radius: 6px; }

/* ── Hero Slides ─────────────────────────── */
.hero-section .hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-section .hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-section .hero-slide-bg.active { opacity: 1; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .about-grid, .about-detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bearers-grid { grid-template-columns: repeat(2, 1fr); }
    .judges-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .news-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); padding: 16px; flex-direction: column; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; }
    .hamburger { display: flex; }
    .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 16px; display: none; }
    .dropdown.open .dropdown-menu { display: block; }
    .top-bar .container { flex-direction: column; gap: 2px; }
    .bearers-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .judges-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .quick-grid { grid-template-columns: 1fr 1fr; }
    .sig-grid { grid-template-columns: 1fr; }
    .download-item { flex-direction: column; align-items: flex-start; }
    .bearers-list { grid-template-columns: 1fr; }
    .news-arrow { display: none; }
    .news-card { flex: 0 0 100%; }
    .news-track { gap: 16px; }
}
@media (max-width: 480px) {
    .bearers-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .quick-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-content h1 { font-size: 1.9rem; }
}
