/**
 * TaktikBola - Professional Football Portal Stylesheet
 * Responsive, Mobile-First, Modern UI
 */

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: #080d1a;
    color: #94a3b8;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0;
}

.top-bar-container {
    max-width: var(--tb-container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar-tagline {
    color: #64748b;
}

@media (max-width: 768px) {
    .top-bar-tagline {
        display: none;
    }
}

.top-bar-socials {
    display: flex;
    gap: 0.75rem;
}

.top-bar-socials a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.top-bar-socials a:hover {
    color: var(--tb-accent);
}

/* ==========================================================================
   Header & Nav Enhancements
   ========================================================================== */
.site-branding .highlight {
    color: var(--tb-accent);
}

.site-branding .logo-icon {
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.4));
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.search-form-header {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 0.25rem 0.5rem 0.25rem 1rem;
    transition: all 0.2s ease;
}

.search-form-header:focus-within {
    background: #ffffff;
    border-color: var(--tb-accent);
}

.search-form-header:focus-within .search-field-header {
    color: var(--tb-primary);
}

.search-field-header {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.85rem;
    width: 170px;
    padding: 0;
}

.search-field-header:focus {
    box-shadow: none;
    outline: none;
}

.search-submit-header {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--tb-primary);
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .main-navigation.is-active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .search-form-header {
        display: none;
    }
}

/* ==========================================================================
   Breaking News Bar
   ========================================================================== */
.breaking-news-bar {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 2rem;
}

.breaking-container {
    max-width: var(--tb-container);
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breaking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.breaking-ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    flex-grow: 1;
}

.breaking-ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-item a {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-item a:hover {
    color: var(--tb-accent);
}

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

/* ==========================================================================
   Hero News Magazine Grid
   ========================================================================== */
.hero-news-section {
    margin-bottom: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.25rem;
    border-radius: var(--tb-radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero-main-card,
.hero-sub-card {
    position: relative;
    border-radius: var(--tb-radius);
    overflow: hidden;
    background: #0f172a;
}

.hero-main-card {
    min-height: 420px;
}

.hero-sub-cards {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 860px) {
    .hero-sub-cards {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }
    .hero-sub-card {
        min-height: 180px;
    }
}

.hero-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-card-inner:hover .hero-img {
    transform: scale(1.04);
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-size: 3rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #ffffff;
}

.hero-overlay.sub-overlay {
    padding: 1.25rem;
}

.hero-cat-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--tb-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.hero-main-title a,
.hero-sub-title a {
    color: #ffffff;
}

.hero-main-title a:hover,
.hero-sub-title a:hover {
    color: #6ee7b7;
}

.hero-sub-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   Section Headers & Common Home Sections
   ========================================================================== */
.home-section {
    margin-bottom: 3.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--tb-border);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-badge-icon {
    font-size: 1.25rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--tb-primary);
    line-height: 1.2;
}

.section-subtitle-tag {
    font-size: 0.75rem;
    font-weight: 700;
    background: #e2e8f0;
    color: var(--tb-text-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.section-more-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tb-accent);
}

.section-more-link:hover {
    color: var(--tb-accent-hover);
    text-decoration: underline;
}

/* ==========================================================================
   Timnas Section
   ========================================================================== */
.timnas-header {
    border-bottom-color: #ef4444;
}

.timnas-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .timnas-grid {
        grid-template-columns: 1fr;
    }
}

.timnas-featured-card {
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    overflow: hidden;
    box-shadow: var(--tb-shadow-sm);
}

.timnas-feat-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.timnas-feat-body {
    padding: 1.5rem;
}

.badge-red-white {
    display: inline-block;
    background: linear-gradient(90deg, #dc2626 50%, #ffffff 50%);
    color: #1e293b;
    border: 1px solid #dc2626;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.timnas-feat-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--tb-primary);
}

.timnas-list-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timnas-small-card {
    display: flex;
    gap: 1rem;
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    padding: 0.85rem;
    align-items: center;
    transition: transform 0.2s ease;
}

.timnas-small-card:hover {
    transform: translateY(-2px);
}

.timnas-small-thumb img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--tb-radius-sm);
}

.timnas-small-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   EPL & Liga 1 Grids
   ========================================================================== */
.epl-grid,
.liga1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.epl-card,
.liga1-card {
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    overflow: hidden;
    box-shadow: var(--tb-shadow-sm);
    transition: transform 0.2s ease;
}

.epl-card:hover,
.liga1-card:hover {
    transform: translateY(-3px);
}

.epl-thumb,
.liga1-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
}

.epl-thumb img,
.liga1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.epl-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #38003c;
    color: #00ff85;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
}

.liga1-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #1e3a8a;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
}

.epl-body,
.liga1-body {
    padding: 1.15rem;
}

.epl-title,
.liga1-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Transfer Section
   ========================================================================== */
.transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.transfer-card {
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-top: 3px solid #f59e0b;
    border-radius: var(--tb-radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.transfer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.transfer-pill {
    background: #fef3c7;
    color: #d97706;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.transfer-date {
    font-size: 0.75rem;
    color: var(--tb-text-muted);
}

.transfer-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.transfer-excerpt {
    font-size: 0.875rem;
    color: var(--tb-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Taktik & Analisis Deep Section (Dark Pitch)
   ========================================================================== */
.tactics-pitch-wrapper {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    border-radius: var(--tb-radius);
    padding: 2.5rem;
    color: #ffffff;
    box-shadow: var(--tb-shadow-lg);
    position: relative;
    border: 1px solid #047857;
}

.tactics-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.pitch-tactics-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #a7f3d0;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.tactics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tactic-deep-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--tb-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tactic-deep-card:hover {
    transform: translateY(-4px);
    border-color: var(--tb-accent);
}

.tactic-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
}

.tactic-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tactic-tag {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(4, 120, 87, 0.9);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.tactic-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tactic-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tactic-title a {
    color: #ffffff;
}

.tactic-title a:hover {
    color: #6ee7b7;
}

.tactic-excerpt {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.tactic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.tactic-read-more a {
    color: var(--tb-accent);
    font-weight: 700;
}

.tactic-date {
    color: #94a3b8;
}

/* ==========================================================================
   Popular List Rows
   ========================================================================== */
.popular-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-row-card {
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--tb-shadow-sm);
    transition: transform 0.2s ease;
}

.popular-row-card:hover {
    transform: translateX(4px);
}

.popular-rank {
    font-size: 2rem;
    font-weight: 900;
    color: #cbd5e1;
    line-height: 1;
    min-width: 42px;
    text-align: center;
}

.popular-row-card:nth-child(1) .popular-rank { color: #ef4444; }
.popular-row-card:nth-child(2) .popular-rank { color: #f59e0b; }
.popular-row-card:nth-child(3) .popular-rank { color: var(--tb-accent); }

.popular-thumb img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--tb-radius-sm);
}

.popular-body {
    flex-grow: 1;
}

.popular-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tb-accent);
    margin-bottom: 0.25rem;
}

.popular-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.popular-meta {
    font-size: 0.8rem;
    color: var(--tb-text-muted);
}

/* ==========================================================================
   Sidebar Widgets
   ========================================================================== */
.trending-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.trending-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--tb-border);
}

.trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trending-num {
    background: var(--tb-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.trending-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.2rem;
}

.trending-date {
    font-size: 0.75rem;
    color: var(--tb-text-muted);
}

.tactical-spotlight-widget {
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
    color: #ffffff;
    border: none;
}

.spotlight-tag {
    background: var(--tb-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.tactical-spotlight-widget h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tactical-spotlight-widget p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.spotlight-link {
    color: #6ee7b7;
    font-weight: 700;
    font-size: 0.85rem;
}

.newsletter-widget {
    background: #f0fdf4;
    border-color: #bbf7d0;
    text-align: center;
}

.newsletter-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tb-primary);
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    font-size: 0.875rem;
    color: var(--tb-text-muted);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-btn {
    width: 100%;
}

/* ==========================================================================
   Archive & Category Banner
   ========================================================================== */
.archive-header {
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--tb-shadow-sm);
}

.category-banner {
    border-left: 5px solid var(--tb-accent);
}

.archive-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--tb-accent);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.35rem;
}

.archive-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--tb-primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.archive-description {
    font-size: 1rem;
    color: var(--tb-text-muted);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.archive-stats {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tb-text-muted);
}

/* ==========================================================================
   Pagination Styling
   ========================================================================== */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination-wrapper .nav-links {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--tb-primary);
    transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers:hover {
    background: var(--tb-accent);
    color: #ffffff;
    border-color: var(--tb-accent);
}

.pagination-wrapper .page-numbers.current {
    background: var(--tb-primary);
    color: #ffffff;
    border-color: var(--tb-primary);
}

/* ==========================================================================
   Single Article Detail Styling
   ========================================================================== */
.single-article-card {
    background: var(--tb-card-bg);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    padding: 2.5rem;
    box-shadow: var(--tb-shadow-sm);
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .single-article-card {
        padding: 1.25rem;
    }
}

.article-breadcrumbs {
    font-size: 0.85rem;
    color: var(--tb-text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.article-breadcrumbs a {
    color: var(--tb-text-muted);
}

.article-breadcrumbs a:hover {
    color: var(--tb-accent);
}

.bc-current {
    color: var(--tb-text);
    font-weight: 600;
}

.entry-category-list {
    margin-bottom: 0.75rem;
}

.entry-category-list a {
    background: var(--tb-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.entry-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-author-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-mini img {
    border-radius: 50%;
}

.author-meta-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.single-featured-image {
    margin: 2rem 0;
    border-radius: var(--tb-radius);
    overflow: hidden;
}

.article-share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tb-border);
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tb-primary);
}

.share-btn {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    color: #ffffff;
}

.share-twitter { background-color: #000000; }
.share-facebook { background-color: #1877f2; }
.share-whatsapp { background-color: #25d366; }

/* ==========================================================================
   Footer Custom Grid
   ========================================================================== */
.custom-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .custom-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .custom-footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #94a3b8;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--tb-accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-comm-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.soc-btn {
    width: 36px;
    height: 36px;
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.soc-btn:hover {
    background: var(--tb-accent);
    transform: translateY(-2px);
}
