/* Modern Dark Theme for Kenya CourtsTech */

:root {
    --primary: #2b6ef2;
    --primary-dark: #1b4fd7;
    --dark-bg: #0b1220;
    --darker-bg: #060a13;
    --card-bg: #111a2b;
    --text-main: #e6edf7;
    --text-muted: #9fb3c8;
    --border: #1f2a3b;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --acc-home: #2b6ef2;
    --acc-about: #00b294;
    --acc-services: #6c5ce7;
    --acc-locations: #f29f1b;
    --acc-projects: #00c8ff;
    --acc-testimonials: #ff6ea9;
    --footer-bg: #000000;
    --footer-border: #222222;
    --footer-text-muted: #999999;
    --social-bg: #222222;
    --social-icon: #ffffff;
}

:root[data-theme="light"] {
    --primary: #2b6ef2;
    --primary-dark: #1b4fd7;
    --dark-bg: #f2f6fb;
    --darker-bg: #ffffff;
    --card-bg: #ffffff;
    --text-main: #0b1220;
    --text-muted: #516580;
    --border: rgba(0,0,0,0.08);
    --footer-bg: #ffffff;
    --footer-border: rgba(0,0,0,0.08);
    --footer-text-muted: #516580;
    --social-bg: #f2f6fb;
    --social-icon: #2b6ef2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary);
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--card-bg);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(15, 16, 20, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

:root[data-theme="light"] .navbar.scrolled {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.brand img {
    height: 44px;
    width: auto;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
    font-family: var(--font-heading);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: -6px -12px;
    border-radius: 999px;
    background: transparent;
    transition: 0.25s;
}
.nav-link.active::before,
.nav-link:hover::before {
    opacity: .18;
}
.nav-link.nav-home:hover::before, .nav-link.nav-home.active::before { background: rgba(211,47,47,.18); }
.nav-link.nav-about:hover::before, .nav-link.nav-about.active::before { background: rgba(0,137,123,.18); }
.nav-link.nav-services:hover::before, .nav-link.nav-services.active::before { background: rgba(57,73,171,.18); }
.nav-link.nav-locations:hover::before, .nav-link.nav-locations.active::before { background: rgba(255,143,0,.18); }
.nav-link.nav-projects:hover::before, .nav-link.nav-projects.active::before { background: rgba(109,76,65,.18); }
.nav-link.nav-testimonials:hover::before, .nav-link.nav-testimonials.active::before { background: rgba(216,27,96,.18); }

.nav-link.nav-home::after { background-color: var(--acc-home); }
.nav-link.nav-about::after { background-color: var(--acc-about); }
.nav-link.nav-services::after { background-color: var(--acc-services); }
.nav-link.nav-locations::after { background-color: var(--acc-locations); }
.nav-link.nav-projects::after { background-color: var(--acc-projects); }
.nav-link.nav-testimonials::after { background-color: var(--acc-testimonials); }

:root[data-theme="light"] .nav-link.active::before,
:root[data-theme="light"] .nav-link:hover::before {
    opacity: .12;
}
:root[data-theme="light"] .bar {
    background-color: #111;
}

.btn-cta {
    background: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff !important;
}

.btn-cta:hover {
    background: var(--primary-dark);
}

.btn-cta::after { display: none; }

.cta-pulse { position: relative; }
.cta-pulse::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -12px;
    right: -12px;
    bottom: -8px;
    border-radius: 40px;
    border: 2px solid rgba(211,47,47,.5);
    opacity: .0;
    animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(.95); opacity: .0; }
    40% { transform: scale(1.05); opacity: .7; }
    100% { transform: scale(1.2); opacity: .0; }
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: 0.3s;
}

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
:root[data-theme="light"] .theme-toggle {
    border-color: rgba(0,0,0,0.2);
}
.theme-toggle i { pointer-events: none; }
.theme-toggle:hover { border-color: var(--primary); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: -1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.sub-glitch {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.6);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- Stats --- */
.stats {
    background: var(--primary);
    padding: 50px 0;
    margin-top: -50px; /* Overlap hero */
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item .counter {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-item p {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- About --- */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.col-img, .col-text {
    flex: 1;
    min-width: 300px;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary);
}

.section-subtitle {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box img, .icon-box i {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Make icons white */
}
.icon-box i { color: #fff; } /* Font awesome fix */

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* --- Projects --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-item:hover .overlay {
    opacity: 1;
}

/* --- Contact --- */
.col-contact-info {
    flex: 1;
}

.col-contact-form {
    flex: 1.5;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* --- Footer --- */
footer {
    background: var(--footer-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--footer-border);
    color: var(--text-main);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--footer-border);
    color: var(--footer-text-muted);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--social-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--social-icon);
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.compare-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compare {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    --pos: 50;
}

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(var(--pos) * 1%);
    overflow: hidden;
}

.compare::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--pos) * 1%);
    width: 2px;
    background: var(--primary);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.compare-labels {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

 

/* --- Responsive --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    .nav-menu.active { left: 0; }
    
    .hero-content h1 { font-size: 3rem; }
    .sub-glitch { font-size: 2rem; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .row { flex-direction: column; }
    
    .about-img-wrapper img { box-shadow: 10px 10px 0 var(--primary); }
    .brand img { height: 36px; }
    .brand-name { font-size: 1.3rem; }
}

.faq { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 18px 24px; background: transparent; color: #fff; font-family: var(--font-heading); font-weight: 700; letter-spacing: 1px; font-size: 1rem; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; padding: 0 24px 18px; color: var(--text-muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--primary); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 36px;
}
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}
.testimonial-card .stars { color: #f4c150; margin-bottom: 10px; }
.testimonial-card h4 { margin-top: 12px; font-size: 1.1rem; }
.testimonial-card span { color: var(--text-muted); font-size: 0.9rem; }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.location-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark-bg);
    display: block;
}
.location-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.location-content {
    padding: 16px;
}
.location-content h3 {
    margin-bottom: 6px;
    font-size: 1.3rem;
}
.location-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.btn, .btn-cta {
    transition: transform .2s ease, box-shadow .3s ease, background-position .4s ease;
    background-size: 200% 100%;
    will-change: transform, box-shadow;
}
.btn-primary {
    background-image: linear-gradient(90deg, var(--primary), var(--primary-dark));
}
.btn-primary:hover, .btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(211,47,47,.35);
    background-position: 100% 0;
}
.btn:active, .btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0,0,0,.4);
}

.service-card, .testimonial-card, .location-card {
    transition: transform .25s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover, .testimonial-card:hover, .location-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 18px 40px rgba(211,47,47,.25);
}

.project-item {
    transition: transform .25s ease, box-shadow .35s ease;
}

.project-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.icon-box img, .icon-box i {
    transition: transform .25s ease, filter .35s ease;
}
.service-card:hover .icon-box img,
.service-card:hover .icon-box i {
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 10px 24px rgba(211,47,47,.35));
}

.section-header .section-title {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to right, var(--primary), transparent);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: left 100%;
    animation: underlineReveal .9s ease forwards;
}
@keyframes underlineReveal {
    to { background-size: 100% 2px; }
}

.section-accent {
    position: relative;
    overflow: hidden;
}
.section-accent::before {
    content: "";
    position: absolute;
    top: -90px;
    left: -10%;
    width: 120%;
    height: 200px;
    background: linear-gradient(135deg, rgba(211,47,47,.18), transparent);
    transform: skewY(-6deg);
    pointer-events: none;
}
.section-accent::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -10%;
    width: 120%;
    height: 200px;
    background: linear-gradient(225deg, rgba(183,28,28,.18), transparent);
    transform: skewY(6deg);
    pointer-events: none;
}

.chat-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(211,47,47,.35);
    z-index: 2000;
    border: none;
    cursor: pointer;
}
.chat-toggle:active { transform: translateY(1px); }
.chat-toggle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: none;
}
.chat-toggle .chat-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff1744;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    box-shadow: 0 8px 16px rgba(255,23,68,.35);
}
.chat-header .chat-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    vertical-align: middle;
}
.chat-panel {
    position: fixed;
    right: 24px;
    bottom: 92px;
    width: 340px;
    max-width: calc(100% - 48px);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
    height: 420px;
    transition: height .25s ease;
}
.chat-panel.open { display: flex; }
.chat-panel.peek { height: 250px; }
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border);
}
.chat-title { font-family: var(--font-heading); font-weight: 700; letter-spacing: 1px; }
.chat-close {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-msg { padding: 10px 12px; border-radius: 12px; line-height: 1.4; font-size: .95rem; max-width: 85%; display: inline-flex; flex-direction: column; gap: 6px; }
.chat-msg.user { background: var(--dark-bg); align-self: flex-end; }
.chat-msg.assistant { background: var(--card-bg); border: 1px solid var(--border); align-self: flex-start; }
.chat-msg.assistant.typing { opacity: .7; }
.chat-msg .time { font-size: .75rem; color: var(--text-muted); align-self: flex-end; }
.chat-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
}
.chat-input input {
    flex: 1;
    background: var(--dark-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff;
}
.chat-send {
    background: var(--primary);
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .chat-toggle { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .chat-panel { right: 12px; left: 12px; bottom: 84px; width: auto; height: 70vh; }
    .chat-header { padding: 10px 12px; }
    .chat-input { padding: 10px; }
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px 12px;
}
.chat-chip {
    background: #1f222b;
    color: #fff;
    border: 1px solid #2a2d35;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: .9rem;
    cursor: pointer;
}
.chat-chip:hover { background: var(--primary); border-color: var(--primary); }

:root[data-theme="light"] .chat-panel {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
}
:root[data-theme="light"] .chat-header {
    background: #f8f9fb;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
:root[data-theme="light"] .chat-messages { background: #ffffff; }
:root[data-theme="light"] .chat-msg.user { background: #eef1f5; color: #111111; }
:root[data-theme="light"] .chat-msg.assistant { background: #f6f7fb; border-color: rgba(0,0,0,0.08); color: #111111; }
:root[data-theme="light"] .chat-input { background: #f8f9fb; border-top: 1px solid rgba(0,0,0,0.08); }
:root[data-theme="light"] .chat-input input { background: #ffffff; color: #111111; border-color: rgba(0,0,0,0.1); }
:root[data-theme="light"] .chat-chip { background: #ffffff; color: #111111; border-color: rgba(0,0,0,0.12); }

/* --- Projects Page --- */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.9)), url('../../wp-content/uploads/2024/04/basketball-court.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 50px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: #fff;
}

.project-card {
    display: block;
}

.project-card.hide {
    display: none;
}
