/* =========================================================
   PREMIUM.CSS — Xổ Số Theme Redesign (Modern Navy & White)
   ========================================================= */

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

:root {
    --navy-blue: #003049;
    --navy-light: #00456a;
    --navy-dark: #001d2c;
    --red-alert: #d62828;
    --orange-primary: #f77f00;
    --orange-light: #fcbf49;
    --yellow-acc: #eae2b7;

    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;

    --text-main: #1e293b;
    --text-muted: #64748b;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-white) !important;
    font-family: var(--font-body) !important;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--orange-primary);
}

/* ==========================================================
   LAYOUT GRID
   ========================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.main-column {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 300px;
}

.left-sidebar {
    width: 250px;
}

@media(max-width: 1100px) {
    .left-sidebar {
        display: none;
    }

    /* Hide left sidebar on slightly smaller screens or stack it */
    .row {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}

@media(min-width: 1101px) {
    .row {
        flex-wrap: nowrap;
    }
}

/* ==========================================================
   HEADER MODERN COMPACT
   ========================================================== */
.modern-compact-header {
    background: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    /* moderate, sleek size */
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img.glow-logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
}

.desktop-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li.active a {
    background: var(--orange-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(247, 127, 0, 0.3);
}

/* Submenu Dropdown Update */
.desktop-nav ul li {
    position: relative;
}

.desktop-nav ul li .arr-d {
    display: none;
}

.desktop-nav ul li .menu-c2 {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    /* Space for the arrow */
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 200px;
    padding: 8px;
    z-index: 100;
}

/* Submenu Hover Trigger */
.desktop-nav ul li:hover .menu-c2 {
    display: block;
    animation: popIn 0.2s ease forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Arrow pointer */
.desktop-nav ul li .menu-c2::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    background: var(--bg-white);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.desktop-nav ul li .menu-c2 li a {
    text-transform: none;
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    color: var(--navy-blue);
    background: transparent;
    box-shadow: none;
    font-size: 14px;
}

.desktop-nav ul li .menu-c2 li a:hover {
    background: var(--bg-gray);
    color: var(--orange-primary);
}

.desktop-nav ul li .menu-c2 li a::after {
    display: none;
}

/* Utilities (Date + Live pulse + Toggle) */
.header-utils {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.live-pulse {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4ade80;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    padding: 6px 10px;
    background: rgba(74, 222, 128, 0.1);
    white-space: nowrap;
}

.live-pulse span {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px;
    transition: all 0.2s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media(max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .date-badge {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media(max-width: 480px) {
    .live-pulse {
        display: none;
    }
}

/* ==========================================================
   MOBILE MENU
   ========================================================== */
#m-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#m-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg-white);
    z-index: 10001;
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

body.m-menu-open #m-backdrop {
    opacity: 1;
    visibility: visible;
}

body.m-menu-open #m-nav {
    left: 0;
}

.m-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.m-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.m-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.m-nav-list li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
    font-weight: 600;
}

.m-nav-list li .arr-d {
    display: none;
}

.m-nav-list li .menu-c2 {
    display: none;
    background: var(--bg-gray);
}

.m-nav-list li.active .menu-c2,
.m-nav-list li:hover .menu-c2 {
    display: block;
}

.m-nav-list li .menu-c2 li a {
    padding-left: 40px;
    font-weight: 400;
}

/* ==========================================================
   PAGE TITLE STRIP
   ========================================================== */
.page-title-strip {
    margin: 24px auto 32px;
}

.page-title-strip .container {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #001524 100%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    color: var(--bg-white);
    box-shadow: 0 10px 25px rgba(0, 48, 73, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-title-strip .container::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.strip-content {
    position: relative;
    z-index: 2;
}

.strip-content h1 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #fff;
    letter-spacing: -0.5px;
}

.strip-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
}

.strip-meta {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.strip-meta .badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.strip-icon {
    opacity: 0.9;
    z-index: 2;
}

.strip-icon svg {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media(max-width: 768px) {
    .page-title-strip .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 16px;
    }

    .strip-content h1 {
        font-size: 24px;
    }

    .strip-icon {
        display: none;
    }
}

/* ==========================================================
   MAIN CONTENT & LOTTERY RESULTS (MODERN UI)
   ========================================================== */
.site-content {
    margin-bottom: 60px;
}

.box {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 48, 73, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.box:hover {
    box-shadow: 0 10px 32px rgba(0, 48, 73, 0.08);
}

/* Headings inside the boxes */
.tit-mien,
.title-bor,
.kq-title,
.box .kq-title,
.tit-mien h2,
.tit-mien a,
.title-bor h2,
.content-right .title-r,
h2.section-heading,
.box h2:first-child,
.box>h3:first-child,
.regional-title {
    background: linear-gradient(90deg, var(--navy-blue) 0%, var(--navy-light) 100%) !important;
    color: var(--bg-white) !important;
    padding: 16px 24px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 4px solid var(--orange-primary) !important;
    margin: 0;
    border-radius: 16px 16px 0 0;
    letter-spacing: 0.5px;
    position: relative;
}

.content-right .title-r {
    text-align: left;
}

/* Table Typography & Colors */
.colgiai td div {
    font-weight: 800;
    color: var(--navy-dark);
    font-size: 20px;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.colgiai .gdb div,
.colgiai .g8 div {
    color: var(--red-alert) !important;
    font-weight: 900;
    font-size: 28px !important;
    text-shadow: 0 2px 4px rgba(214, 40, 40, 0.15);
    letter-spacing: 2px;
}

/* Modern Tables */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: var(--bg-white);
}

table th {
    background: var(--bg-gray) !important;
    color: var(--navy-blue) !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    padding: 14px 10px;
    border-bottom: 2px solid var(--border-color);
    letter-spacing: 0.5px;
}

table td {
    border-bottom: 1px solid var(--border-color);
    border-right: 1px dashed var(--border-color);
    padding: 12px 10px;
    text-align: center;
    transition: background 0.2s;
}

table td:last-child {
    border-right: none;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover td {
    background: #f8fafc;
}

.firstlast-mb th {
    background: var(--navy-light) !important;
    color: #fff !important;
    font-weight: 600;
}

.firstlast-mb td {
    font-size: 16px;
    font-weight: 700;
    background: #f8fafc;
}

.firstlast-mb td:nth-child(even) {
    color: var(--navy-blue);
    background: var(--bg-white);
}

/* UI Tabs Panel */
.tab-panel {
    display: flex;
    padding: 12px 16px;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
    gap: 8px;
}

.tab-panel li {
    flex: 1;
    text-align: center;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tab-panel li a {
    display: block;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.tab-panel li:hover {
    background: #e2e8f0;
}

.tab-panel li.active {
    background: var(--navy-blue);
    box-shadow: 0 4px 10px rgba(0, 48, 73, 0.2);
}

.tab-panel li.active a {
    color: var(--bg-white);
}

/* ==========================================================
   SIDEBAR STYLES (NEW PREMIUM MODULES)
   ========================================================== */
.sidebar .box {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 48, 73, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 24px 20px 10px 20px;
    margin-bottom: 24px;
    overflow: visible;
}

/* Sidebar Title Widget */
.sidebar .title-r,
.sidebar h2,
.sidebar .box>h3 {
    background: transparent !important;
    color: var(--navy-dark) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 0 0 16px 0 !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    text-align: left;
    margin: 0 0 15px 0 !important;
    border-radius: 0;
    position: relative;
    letter-spacing: -0.2px;
    display: block;
}

/* Elegant left accent mark for Title */
.sidebar .title-r::before,
.sidebar h2::before,
.sidebar .box>h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    /* overlaps the border-bottom */
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 3px;
    display: block;
    margin-right: 0;
}

/* Base Lists */
.sidebar ul,
.sidebar .content-right,
.sidebar .content-l {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* New Hover-Slide List Design */
.sidebar ul li {
    background: transparent;
    border: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 14px 4px;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    box-shadow: none;
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Stylish Chevron */
.sidebar ul li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--navy-blue);
    border-right: 2px solid var(--navy-blue);
    transform: rotate(45deg);
    margin-right: 14px;
    opacity: 0.4;
    transition: all 0.3s;
}

/* Hover Interactivity */
.sidebar ul li:hover {
    background: rgba(247, 127, 0, 0.04);
    padding-left: 10px;
    /* Slides the whole row right! */
    transform: none;
}

.sidebar ul li:hover a {
    color: var(--orange-primary);
}

.sidebar ul li:hover a::before {
    opacity: 1;
    border-color: var(--orange-primary);
    transform: rotate(45deg) translate(3px, -3px);
}

/* Hide Default SVG icons from external DOM */
.sidebar ul li svg:first-child,
.sidebar ul li .arr-d {
    display: none !important;
}

/* ==========================================================
   BUTTONS AND MISC
   ========================================================== */
#go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--navy-blue);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background 0.3s;
}

#go-top:hover {
    background: var(--orange-primary);
}

/* Form Styles */
input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.btn-primary {
    background: var(--navy-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--navy-light);
    color: #fff;
}

/* Error page */
.error-page {
    padding: 80px 15px;
    text-align: center;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--navy-blue);
    line-height: 1;
}

.error-heading {
    font-size: 32px;
    margin: 20px 0;
}

.error-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.error-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.error-links a {
    background: var(--bg-gray);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.error-links a:hover {
    background: var(--navy-blue);
    color: #fff;
    border-color: var(--navy-blue);
}

/* Responsive iframe fixing */
iframe {
    max-width: 100%;
}

/* Custom Date control inner */
.opt_date_full {
    background: var(--navy-light);
    color: #fff;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 15px;
}

.opt_date_full input {
    width: auto;
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
}

/* Post Article formatting */
.post-article {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.post-article h2,
.post-article h3 {
    color: var(--navy-blue);
    margin-top: 25px;
}

.post-article img {
    border-radius: var(--radius-sm);
    margin: 15px 0;
}

.blog-layout {
    display: flex;
    align-items: flex-start !important;
}

.blog-layout .main-column {
    flex: 2;
    min-width: 0;
}

.blog-layout .sidebar {
    flex: 1;
    min-width: 0;
}

/* Force sidebars sticky safely on mostly non-mobile widths */
@media(min-width: 768px) {
    .blog-layout .sidebar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 90px !important;
        /* clears the compact header + spacer */
        align-self: flex-start !important;
        height: auto !important;
        z-index: 100;
        will-change: transform;
    }
}

/* Add any additional needed tweaks here to make it complete */
.announcement {
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--orange-primary);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.see-more a {
    background: var(--navy-blue);
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.see-more a:hover {
    background: var(--navy-light);
}

nav {
    background: transparent;
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-accordion {
    padding: 10px 16px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--navy-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item.active .faq-question {
    background: var(--navy-blue);
}

.question-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    transition: color 0.2s;
}

.faq-item.active .question-text {
    color: #fff;
}

.toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--orange-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

/* horizontal line */
.toggle-icon::before {
    width: 14px;
    height: 3px;
}

/* vertical line */
.toggle-icon::after {
    width: 3px;
    height: 14px;
}

.faq-item.active .toggle-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .toggle-icon::before {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
    background: var(--bg-white);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.answer-content {
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.answer-content p {
    margin: 0 0 10px 0;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.answer-content li {
    margin-bottom: 6px;
}

.content-right .title-r a {
    color: var(--navy-dark) !important;
}

.sidebar {
    position: sticky;
    top: 30px;
}

/* ==========================================================
   FOOTER (MODERN REDESIGN)
   ========================================================== */

/* Wave Divider */
.footer-wave {
    line-height: 0;
    background: #f8fafc;
    /* matches page bg above footer */
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* Footer Body */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
}

.footer-body {
    padding: 48px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo strong {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-size: 14px;
    max-width: 300px;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tags span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-tags span svg {
    color: var(--orange-primary);
}

/* Link Columns */
.footer-col-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.footer-col-title svg {
    color: var(--orange-primary);
    flex-shrink: 0;
}

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

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

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links-col ul li a em {
    font-style: normal;
    background: rgba(247, 127, 0, 0.15);
    color: var(--orange-light);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.footer-links-col ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13.5px;
}

.footer-copy strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--orange-primary);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
}

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}