/*
Theme Name: AntenaRadio
Theme URI: https://www.antena-radio.ba
Author: Antena Radio
Author URI: https://www.antena-radio.ba
Description: Custom tema za Antena Radio Jelah 88.7 FM
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: antenaradio
*/

:root {
    --primary-blue: #2dbefb;
    /* Adjusted closer to screenshot */
    --primary-dark-blue: #1fa2ea;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Open Sans', sans-serif;
    --container-width: 1200px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-primary {
    color: var(--primary-blue);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--primary-dark-blue);
}

/* Header */
.site-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.logo-text span {
    font-size: 0.8rem;
    color: #777;
    font-weight: 600;
    display: block;
}

.main-navigation ul {
    display: flex;
    gap: 25px;
}

.main-navigation a {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a {
    color: var(--primary-blue);
}

.header-actions .btn {
    padding: 10px 25px;
    border-radius: 30px;
    /* Rounded pill shape */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #f0f4f8 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content .subtitle {
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

.hero-content h2 span {
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-content .btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
}

/* Stats Strip */
.stats-strip {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item span {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Content Area */
.site-main {
    padding: 60px 0;
}

/* News Section */
.news-section {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    color: #333;
}

.view-all {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Standard Page Hero */
.page-hero {
    background: #fff;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #888;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

.news-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-thumb {
    height: 200px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--primary-blue);
}

/* Sidebar Widget "Antena Servis" */
.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.widget-title {
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-badge {
    background: #FFEBEE;
    color: #D32F2F;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.service-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-cat {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-title {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.service-meta {
    background: #E3F2FD;
    color: var(--primary-blue);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
    font-family: monospace;
}

/* Programs Section */
.programs-section {
    padding: 60px 0;
}

.programs-section h2.section-center-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.programs-section h2.section-center-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.program-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: #E1F5FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.program-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-time {
    display: inline-block;
    background: #E3F2FD;
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Footer (Basic styling) - OLD REMOVED */

/* --- NEW LAYOUT STYLES --- */

/* Stats Strip */
.stats-strip {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: center;
}

.stat-item {
    position: relative;
    padding: 10px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Main Content Layout */
.main-content-layout {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    margin-bottom: 60px;
}

/* Content Area */
.content-area {
    /* Left column */
}

/* Sidebar Area */
.sidebar-area {
    /* Right column */
}

/* News Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-blue);
}

.section-title h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    text-transform: uppercase;
}

.news-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--primary-blue);
}

.news-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-title span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-live {
    background: #ff4757;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Classifieds List */
.classifieds-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.classified-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.classified-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.classified-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.classified-cat {
    font-size: 0.75rem;
    color: #999;
}

.classified-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: #e3f2fd;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Banner Placeholder */
.banner-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* Podcast / Video Section */
.video-section {
    background: #222;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 60px;
}

.video-section .section-header {
    border-bottom-color: #444;
}

.video-section .section-title h2 {
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    height: 180px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border: 2px solid #fff;
    transition: 0.3s;
}

.video-card:hover .play-icon-overlay {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

/* Marketing CTA */
.marketing-cta-section {
    margin-bottom: 0;
    /* Flush with footer */
    padding-bottom: 60px;
}

.cta-box {
    background: #333;
    border-radius: 15px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(135deg, #333 0%, #444 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.cta-btn .btn {
    background: #fff;
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 800;
    transition: 0.3s;
}

.cta-btn .btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.05);
}

/* New Footer */
.site-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 70px 0 30px;
    margin-top: 0;
    border-top: 5px solid var(--primary-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* White logo */
    opacity: 0.8;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .main-content-layout {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .news-grid-2 {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    width: 100%;
    max-width: 400px;
    height: 80vh;
    max-height: 700px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.modal-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-close {
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    transition: 0.3s;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

/* Views */
.view-container {
    display: none;
    height: 100%;
    padding: 20px;
}

.view-container.active {
    display: flex;
    flex-direction: column;
}

/* Player View */
#view-player {
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.player-placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Contact View */
#view-contact {
    color: #fff;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-title i {
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary-blue);
}

textarea.form-input {
    height: 120px;
    resize: none;
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
    /* Push to bottom if space permits */
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #1fe067;
}

.btn-email-modal {
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-email-modal:hover {
    background-color: var(--primary-dark-blue);
}


/* Modal Footer Tabs */
.modal-footer-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #151515;
    border-top: 1px solid #333;
}

.tab-item {
    padding: 15px;
    text-align: center;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tab-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.tab-item:hover {
    color: #fff;
}

.tab-item.active {
    color: var(--primary-blue);
    position: relative;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 10px rgba(41, 182, 246, 0.5);
    /* Glow effect from screenshot */
}


/* Player Animation and Controls */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating-disk {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.rotating-disk.playing {
    animation: spin 3s linear infinite;
}

.player-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-play-pause {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(45, 190, 251, 0.3);
}

.btn-play-pause:hover {
    transform: scale(1.1);
    background: var(--primary-dark-blue);
}

/* --- NEW LAYOUT STYLES --- */

/* Stats Strip */
.stats-strip {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: center;
}

.stat-item {
    position: relative;
    padding: 10px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Main Content Layout */
.main-content-layout {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    margin-bottom: 60px;
}

/* Content Area */
.content-area {
    /* Left column */
}

/* Sidebar Area */
.sidebar-area {
    /* Right column */
}

/* News Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-blue);
}

.section-title h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    text-transform: uppercase;
}

.news-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--primary-blue);
}

.news-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-title span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-live {
    background: #ff4757;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Classifieds List */
.classifieds-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.classified-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.classified-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.classified-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.classified-cat {
    font-size: 0.75rem;
    color: #999;
}

.classified-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: #e3f2fd;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Banner Placeholder */
.banner-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* Podcast / Video Section */
.video-section {
    background: #222;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 60px;
}

.video-section .section-header {
    border-bottom-color: #444;
}

.video-section .section-title h2 {
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    height: 180px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border: 2px solid #fff;
    transition: 0.3s;
}

.video-card:hover .play-icon-overlay {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

/* Marketing CTA */
.marketing-cta-section {
    margin-bottom: 0;
    /* Flush with footer */
    padding-bottom: 60px;
}

.cta-box {
    background: #333;
    border-radius: 15px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(135deg, #333 0%, #444 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.cta-btn .btn {
    background: #fff;
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 800;
    transition: 0.3s;
}

.cta-btn .btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.05);
}

/* New Footer */
.site-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 70px 0 30px;
    margin-top: 0;
    border-top: 5px solid var(--primary-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* White logo */
    opacity: 0.8;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .main-content-layout {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .news-grid-2 {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* --- HERO SLIDER --- */
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        animation: fadeSlide 15s infinite;
    }

    .slide:nth-child(1) {
        animation-delay: 0s;
    }

    .slide:nth-child(2) {
        animation-delay: 5s;
    }

    .slide:nth-child(3) {
        animation-delay: 10s;
    }

    @keyframes fadeSlide {
        0% {
            opacity: 0;
        }

        4% {
            opacity: 1;
        }

        33% {
            opacity: 1;
        }

        37% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    /* Ensure Logo in Header doesn't break layout */
    .logo-area img {
        transition: 0.3s;
    }

    /* Stats Strip Logo */
    .stat-logo {
        height: 40px;
        width: auto;
        display: block;
        margin: 0 auto;
        filter: brightness(0) invert(1);
        /* Make it white if it's not already */
        opacity: 0.9;
    }

    /* --- Mobile Responsive Styles --- */
    #mobile-menu-toggle {
        display: none;
    }

    @media (max-width: 768px) {

        /* Header Mobile Layout */
        .header-inner {
            flex-wrap: wrap;
            /* Allow wrapping */
            position: relative;
        }

        #mobile-menu-toggle {
            display: block !important;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #333;
            cursor: pointer;
            padding: 5px;
            margin-right: auto;
            /* Push to left if needed, or adjust placement */
            margin-left: 20px;
            order: 2;
            /* Adjust order if flex */
        }

        /* Adjust order: Logo (1), Toggle (2), Actions (3) */
        .logo-area {
            order: 1;
        }

        .header-actions {
            order: 3;
            /* Keep visible */
        }

        /* Main Navigation */
        .main-navigation {
            display: none;
            width: 100%;
            order: 4;
            /* Below everything */
            background: #fff;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 9999;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            border-top: 1px solid #f0f0f0;
        }

        .main-navigation.active {
            display: block;
        }

        .main-navigation ul {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .main-navigation a {
            display: block;
            padding: 10px 0;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid #f9f9f9;
            font-size: 1.1rem;
            /* Slightly larger for touch */
        }

        /* Hero Section */
        .hero-inner {
            display: flex;
            flex-direction: column-reverse;
            /* Text bottom, Image top */
            gap: 30px;
            text-align: center;
        }

        .hero-content h2 {
            font-size: 2.2rem;
        }

        .hero-content p {
            margin: 0 auto 20px;
        }

        /* Stats Strip */
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 20px;
        }

        .stat-item::after {
            display: none !important;
            /* Remove separator lines */
        }

        /* Main Content */
        .main-content-layout {
            display: block;
        }

        .content-area,
        .sidebar-area {
            width: 100%;
        }

        .sidebar-area {
            margin-top: 40px;
        }

        .news-grid-2 {
            grid-template-columns: 1fr;
            /* Stack news cards */
        }

        /* Footer */
        .footer-grid {
            grid-template-columns: 1fr !important;
            text-align: center;
            gap: 40px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-contact-list {
            align-items: center;
        }

        .contact-item {
            justify-content: center;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        /* Ensure general padding on mobile */
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }
    }


    /* --- Stats Strip Reduction --- */
    .stats-strip {
        padding: 17px 0 !important;
        /* Reduced from 20px - 15% */
    }

    .stat-item {
        padding: 8px !important;
        /* Reduced from 10px */
    }

    .stat-item h3 {
        font-size: 2.1rem !important;
        /* Reduced from 2.5rem - ~15% */
    }

    .stat-item span {
        font-size: 0.76rem !important;
        /* Reduced from 0.9rem - ~15% */
    }

    .stat-logo {
        height: 34px !important;
        /* Reduced from 40px - 15% */
    }


    /* --- FIX: Force Hide Mobile Toggle on Desktop --- */
    #mobile-menu-toggle {
        display: none;
    }

    @media (min-width: 769px) {
        #mobile-menu-toggle {
            display: none !important;
        }

        .main-navigation {
            display: block !important;
        }
    }
}