/* =============================================
   AFRICA PRO 24 MEDIA - COMPLETE STYLESHEET
   Colors: Gold (#FFD700), Black (#000000), Blue (#3FA9F5)
   ============================================= */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-dark: #D4AF37;
    --black: #000000;
    --black-light: #1A1A1A;
    --blue: #3FA9F5;
    --blue-dark: #2D8BCF;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --gray-dark: #333333;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--black);
    background: var(--gray);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   PAGE CONTENT PADDING - BOOTSTRAP STYLE
   ============================================= */
.page-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

.article-single-wrapper,
.category-page,
.country-page,
.about-page,
.contact-page,
.subcategory-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* =============================================
   AD SECTION - CENTRALIZED
   ============================================= */
.ad-top-section {
    background: transparent;
    padding: 10px 0px 0px 0px;
    border-bottom: 1px solid transparent;
}

.ad-top-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-top-container {
    width: 728px;
    height: 90px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ad-top-label {
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 9px;
    color: #aaa;
    background: rgba(255,255,255,0.9);
    padding: 0 5px;
    border-radius: 2px;
    font-weight: 600;
}

.ad-top-text {
    color: #bbb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   MENU BAR
   ============================================= */
.menu-bar {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Left: Hamburger + Logo */
.menu-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.hamburger-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    margin: 0;
}

.hamburger-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-logo {
    flex-shrink: 0;
}

.menu-logo img {
    max-height: 40px;
    width: auto;
}

/* Center: Categories */
.menu-categories {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-categories-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.menu-categories-list > li {
    position: relative;
}

.menu-categories-list > li > a {
    display: block;
    color: var(--black);
    padding: 6px 10px;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
}

.menu-categories-list > li > a:hover,
.menu-categories-list > li > a.active {
    color: var(--gold-dark);
}

.menu-caret {
    font-size: 9px;
    margin-left: 3px;
    color: #999;
}

/* Dropdown Menus - Desktop */
.menu-dropdown {
    position: relative;
}

.menu-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black);
    min-width: 200px;
    padding: 8px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-top: 3px solid var(--gold);
    z-index: 1000;
}

.menu-dropdown:hover > .menu-dropdown-menu {
    display: block;
}

.menu-dropdown-menu li a {
    display: block;
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: uppercase;
}

.menu-dropdown-menu li a:hover {
    background: var(--gold);
    color: var(--black);
}

/* More Dropdown - Subcategories on Hover */
.more-dropdown .more-menu {
    min-width: 220px;
}

.more-sub-item {
    position: relative;
}

.more-sub-item .more-sub-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: var(--black);
    border-top: 3px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.more-sub-item:hover > .more-sub-menu {
    display: block;
}

.more-sub-item .menu-caret {
    font-size: 10px;
    margin-left: 8px;
    color: #999;
}

.more-sub-menu li a {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--white);
    padding: 8px 20px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.more-sub-menu li a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Right: Actions */
.menu-right {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
}

/* =============================================
   AFRICA DROPDOWN - BLACK BACKGROUND
   ============================================= */
.africa-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.africa-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    padding: 6px 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

.africa-dropdown-btn:hover {
    color: var(--gold-dark);
}

.africa-caret {
    font-size: 9px;
    color: #999;
}

.africa-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 400px;
    max-width: 600px;
    background: var(--black);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-top: 3px solid var(--gold);
    padding: 15px 20px;
    z-index: 1001;
    max-height: 450px;
    overflow-y: auto;
}

.africa-dropdown-panel.open {
    display: block;
    animation: dropDown 0.25s ease;
}

@keyframes dropDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.africa-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.africa-dropdown-item {
    display: block;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: capitalize;
}

.africa-dropdown-item:hover {
    background: var(--gold);
    color: var(--black);
}

/* Scrollbar styling for Africa dropdown */
.africa-dropdown-panel::-webkit-scrollbar {
    width: 6px;
}

.africa-dropdown-panel::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}

.africa-dropdown-panel::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.africa-dropdown-panel::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* =============================================
   SIGN IN BUTTON
   ============================================= */
.signin-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    padding: 6px 10px;
    transition: var(--transition);
    border-radius: 4px;
    text-transform: uppercase;
}

.signin-btn:hover {
    color: var(--gold-dark);
}

.signin-btn.admin-link {
    color: var(--gold-dark);
}

.signin-btn.admin-link:hover {
    color: var(--black);
}

.desktop-only {
    display: flex;
}

/* =============================================
   HAMBURGER OVERLAY
   ============================================= */
.hamburger-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    overflow-y: auto;
    padding: 30px 20px;
}

.hamburger-overlay.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.hamburger-overlay-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hamburger-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.hamburger-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Hamburger Search */
.hamburger-search {
    margin: 50px 0 30px;
}

.hamburger-search form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.hamburger-search form:focus-within {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

.hamburger-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    font-size: 18px;
    color: var(--white);
    outline: none;
}

.hamburger-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

.hamburger-search button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger-search button:hover {
    color: var(--gold);
}

/* Categories Grid - 4 Columns */
.hamburger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 0;
}

.hamburger-grid-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: var(--transition);
}

.hamburger-grid-item:hover {
    background: rgba(255,255,255,0.08);
}

.hamburger-cat-link {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    color: var(--white) !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    text-transform: uppercase !important;
}

.hamburger-cat-link:hover {
    color: var(--gold) !important;
    background: rgba(255,215,0,0.05) !important;
}

.hamburger-cat-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hamburger-caret {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.hamburger-cat-link:hover .hamburger-caret {
    color: var(--gold);
}

/* Hamburger Subcategories */
.hamburger-sub {
    display: none;
    padding: 0 0 8px 0;
    background: rgba(0,0,0,0.2);
}

.hamburger-sub.open {
    display: block;
}

.hamburger-sub li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hamburger-sub li:last-child {
    border-bottom: none;
}

.hamburger-sub li a {
    display: block;
    color: rgba(255,255,255,0.7) !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    transition: var(--transition) !important;
    text-transform: uppercase !important;
}

.hamburger-sub li a:hover {
    color: var(--gold) !important;
    background: rgba(255,215,0,0.05) !important;
}

.hamburger-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(63,169,245,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background: var(--black-light);
    transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #CCCCCC;
}

.hero .btn {
    font-size: 16px;
    padding: 15px 40px;
}

/* =============================================
   FEATURED ARTICLES
   ============================================= */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.featured-main {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-main-content {
    padding: 30px;
}

.featured-main-content .category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.featured-main-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.featured-main-content h2 a {
    color: var(--black);
}

.featured-main-content h2 a:hover {
    color: var(--gold);
}

.featured-main-content .meta {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-side-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: center;
}

.featured-side-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.featured-side-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.featured-side-item h3 a {
    color: var(--black);
}

.featured-side-item h3 a:hover {
    color: var(--gold);
}

.featured-side-item .meta {
    font-size: 12px;
    color: #888;
}

/* =============================================
   ARTICLE GRID
   ============================================= */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold);
    position: relative;
}

.section-title span {
    color: var(--gold);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.article-card-content {
    padding: 25px;
}

.article-card .category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.article-card .country-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.article-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.article-card h3 a {
    color: var(--black);
}

.article-card h3 a:hover {
    color: var(--gold);
}

.article-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.article-card .meta {
    font-size: 13px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.article-card .meta .views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =============================================
   SINGLE ARTICLE
   ============================================= */
.article-single {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.article-single .article-header {
    margin-bottom: 30px;
}

.article-single .article-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.article-single .article-meta {
    color: #888;
    font-size: 14px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.article-single .article-meta .country-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.article-single .article-meta .country-tags span {
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.article-meta span {
    padding-right: 10px;
    color: grey;
    font-size: 14px;
}

.article-single .article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.article-single .article-content {
    font-size: 17px;
    line-height: 1.8;
}

.article-single .article-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
}

.article-single .article-content h3 {
    font-size: 22px;
    margin: 25px 0 10px;
}

.article-single .article-content ul,
.article-single .article-content ol {
    margin: 15px 0 15px 30px;
}

.article-single .article-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

/* =============================================
   ABOUT PAGE - COMPLETE STYLES
   ============================================= */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-hero h1 span {
    color: var(--gold);
}

.about-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #CCCCCC;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--gold);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-image-box {
    background: var(--black);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-image-box .icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-image-box h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.about-image-box p {
    color: #CCCCCC;
    font-size: 16px;
}

.about-image-box .about-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.about-image-box .about-meta p {
    color: #888;
    font-size: 14px;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mission-vision .mv-box {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.mission-vision .mv-box.blue-border {
    border-top-color: var(--blue);
}

.mission-vision .mv-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-vision .mv-box h3 span {
    color: var(--gold);
}

.mission-vision .mv-box.blue-border h3 span {
    color: var(--blue);
}

.mission-vision .mv-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.mission-vision .mv-box ul {
    list-style: none;
    padding: 0;
}

.mission-vision .mv-box ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.mission-vision .mv-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Team Section */
.team-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.team-title span {
    color: var(--gold);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--black);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
    border: 3px solid var(--gold);
}

.team-member .avatar.blue {
    border-color: var(--blue);
    color: var(--blue);
}

.team-member h4 {
    font-size: 18px;
    font-weight: 700;
}

.team-member .role {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
}

.team-member p {
    color: #888;
    font-size: 13px;
    margin-top: 10px;
}

/* Values Section */
.values-section {
    background: var(--black);
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
}

.values-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.values-section h2 span {
    color: var(--gold);
}

.values-section > p {
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.values-grid .value-item {
    text-align: center;
}

.values-grid .value-item .icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
}

.values-grid .value-item h4 {
    color: var(--gold);
    font-size: 16px;
}

.values-grid .value-item p {
    color: #999;
    font-size: 13px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-hero h1 span {
    color: var(--gold);
}

.contact-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: #CCCCCC;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-form h2 span {
    color: var(--gold);
}

.contact-form .btn-gold {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--gold);
}

.contact-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.contact-info .info-item:last-child {
    border-bottom: none;
}

.contact-info .info-item .icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info .info-item .icon.gold {
    background: rgba(255,215,0,0.1);
    color: var(--gold);
}

.contact-info .info-item .icon.blue {
    background: rgba(63,169,245,0.1);
    color: var(--blue);
}

.contact-info .info-item h4 {
    font-weight: 700;
    font-size: 16px;
}

.contact-info .info-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.contact-info .info-item p a {
    color: var(--blue);
}

.contact-info .info-item p a:hover {
    color: var(--gold);
}

.contact-info .social-box {
    background: var(--black);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.contact-info .social-box h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-info .social-box .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info .social-box .social-links a {
    color: var(--white);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}

.contact-info .social-box .social-links a:hover {
    color: var(--gold);
    background: rgba(255,215,0,0.1);
    transform: translateY(-2px);
}

/* =============================================
   COUNTRY PAGE
   ============================================= */
.country-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.country-header .flag {
    font-size: 60px;
    margin-bottom: 10px;
}

.country-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.country-header p {
    color: #CCCCCC;
    font-size: 16px;
}

.country-header .region-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* =============================================
   CATEGORY PAGE
   ============================================= */
.category-header {
    margin-bottom: 30px;
}

.category-description {
    color: #666;
    font-size: 16px;
    margin-top: -15px;
    margin-bottom: 20px;
}

/* =============================================
   SUBCATEGORY PAGE
   ============================================= */
.subcategory-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: var(--white);
}

.subcategory-header-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subcategory-badge {
    background: var(--gold);
    color: var(--black);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.subcategory-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 5px 0;
}

.subcategory-header p {
    color: #CCCCCC;
    font-size: 16px;
    margin: 0;
}

/* =============================================
   NO ARTICLES MESSAGE
   ============================================= */
.no-articles {
    text-align: center;
    padding: 50px 0;
    color: #888;
    font-size: 16px;
}

/* =============================================
   FORMS
   ============================================= */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--black);
}

.form-container h2 span {
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63,169,245,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #888;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--black);
    border-radius: 5px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background: var(--gold);
    color: var(--black);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #CCCCCC;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.footer-bottom .gold {
    color: var(--gold);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .ad-top-container {
        width: 100%;
        height: 80px;
    }
    
    .ad-top-text {
        font-size: 12px;
    }
    
    .menu-categories-list > li > a {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .africa-dropdown-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .signin-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .hamburger-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .africa-dropdown-panel {
        min-width: 350px;
        max-width: 500px;
        right: -10px;
        padding: 15px 15px;
    }
    
    .africa-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .africa-dropdown-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    /* AD */
    .ad-top-container {
        height: 60px;
    }
    
    .ad-top-text {
        font-size: 10px;
    }
    
    /* Menu Bar */
    .menu-bar {
        padding: 8px 0;
    }
    
    .menu-bar-inner {
        gap: 10px;
    }
    
    .menu-left {
        gap: 10px;
    }
    
    .hamburger-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .menu-logo img {
        max-height: 32px;
    }
    
    /* Hide categories on mobile */
    .desktop-only {
        display: none !important;
    }
    
    .menu-right {
        gap: 8px;
    }
    
    .africa-dropdown-btn {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .africa-dropdown-btn .africa-caret {
        font-size: 8px;
    }
    
    .signin-btn {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .africa-dropdown-panel {
        min-width: 280px;
        max-width: 320px;
        right: -5px;
        padding: 12px 12px;
        max-height: 300px;
    }
    
    .africa-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .africa-dropdown-item {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* Hamburger Grid - 2 columns on mobile */
    .hamburger-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .hamburger-cat-link {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
    
    .hamburger-search input {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .hamburger-search button {
        font-size: 18px;
        padding: 12px 16px;
    }
    
    .hamburger-overlay {
        padding: 20px 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero .btn {
        font-size: 14px;
        padding: 12px 30px;
    }
    
    .featured-main img {
        height: 250px;
    }
    
    .featured-main-content {
        padding: 20px;
    }
    
    .featured-main-content h2 {
        font-size: 22px;
    }
    
    .featured-side-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .featured-side-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-single {
        padding: 20px;
        margin: 20px 0;
    }
    
    .article-single .article-title {
        font-size: 28px;
    }
    
    .article-single .article-image {
        max-height: 300px;
    }
    
    .article-single .article-content {
        font-size: 16px;
    }
    
    .form-container {
        padding: 25px;
        margin: 30px 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .page-content,
    .article-single-wrapper,
    .category-page,
    .country-page,
    .about-page,
    .contact-page,
    .subcategory-page {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero p {
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 26px;
    }
    
    .mission-vision .mv-box {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .subcategory-header {
        padding: 20px;
    }
    
    .subcategory-header h1 {
        font-size: 26px;
    }
    
    .subcategory-header p {
        font-size: 14px;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE
   ============================================= */
@media (max-width: 480px) {
    .ad-top-container {
        height: 50px;
    }
    
    .ad-top-text {
        font-size: 9px;
    }
    
    .menu-left {
        gap: 8px;
    }
    
    .hamburger-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .menu-logo img {
        max-height: 28px;
    }
    
    .africa-dropdown-btn {
        font-size: 10px;
        padding: 3px 5px;
    }
    
    .africa-dropdown-btn .africa-caret {
        display: none;
    }
    
    .signin-btn {
        font-size: 10px;
        padding: 3px 5px;
    }
    
    .africa-dropdown-panel {
        min-width: 240px;
        max-width: 280px;
        right: -15px;
        padding: 10px 10px;
        max-height: 250px;
    }
    
    .africa-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    
    .africa-dropdown-item {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    /* 1 column on very small mobile */
    .hamburger-grid {
        grid-template-columns: 1fr;
    }
    
    .hamburger-cat-link {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }
    
    .hamburger-search input {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .hamburger-search button {
        font-size: 16px;
        padding: 10px 14px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero .btn {
        font-size: 12px;
        padding: 10px 25px;
    }
    
    .featured-main img {
        height: 180px;
    }
    
    .featured-main-content h2 {
        font-size: 18px;
    }
    
    .article-card img {
        height: 160px;
    }
    
    .article-card h3 {
        font-size: 17px;
    }
    
    .article-single .article-title {
        font-size: 22px;
    }
    
    .article-single .article-meta {
        font-size: 12px;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .page-content,
    .article-single-wrapper,
    .category-page,
    .country-page,
    .about-page,
    .contact-page,
    .subcategory-page {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .about-hero h1 {
        font-size: 26px;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .about-image-box {
        padding: 25px;
    }
    
    .about-image-box .icon {
        font-size: 50px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-section {
        padding: 30px 20px;
    }
    
    .values-section h2 {
        font-size: 26px;
    }
    
    .contact-hero h1 {
        font-size: 26px;
    }
    
    .contact-info .info-item {
        flex-wrap: wrap;
    }
    
    .subcategory-header {
        padding: 15px;
    }
    
    .subcategory-header h1 {
        font-size: 22px;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }

.bg-gold { background: var(--gold); }
.bg-black { background: var(--black); }
.bg-blue { background: var(--blue); }
.bg-white { background: var(--white); }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

.rounded { border-radius: 10px; }
.shadow { box-shadow: var(--shadow); }

.hidden { display: none; }
.visible { display: block; }

.screen-reader-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* =============================================
   COUNTRY PAGE
   ============================================= */
.country-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

.country-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.country-header .flag {
    font-size: 60px;
    margin-bottom: 10px;
}

.country-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.country-header p {
    color: #CCCCCC;
    font-size: 16px;
}

.country-header .region-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* =============================================
   RESPONSIVE - COUNTRY PAGE
   ============================================= */
@media (max-width: 768px) {
    .country-header {
        padding: 20px;
    }
    
    .country-header h1 {
        font-size: 28px;
    }
    
    .country-header .flag {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .country-header {
        padding: 15px;
    }
    
    .country-header h1 {
        font-size: 24px;
    }
    
    .country-header .flag {
        font-size: 40px;
    }
    
    .country-header p {
        font-size: 14px;
    }
}
/* =============================================
   HOMEPAGE STYLES
   ============================================= */

/* Top Stories Section */
.top-stories {
    margin-bottom: 40px;
}

.top-stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.top-stories-main {
    position: relative;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.top-stories-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.top-stories-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
}

.top-stories-main-content .article-category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.top-stories-main-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.top-stories-main-content h2 a {
    color: var(--white);
}

.top-stories-main-content h2 a:hover {
    color: var(--gold);
}

.top-stories-main-content p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 10px;
}

.article-time {
    font-size: 12px;
    color: #999;
}

.top-stories-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-stories-side-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.top-stories-side-item:hover {
    transform: translateY(-3px);
}

.top-stories-side-item a {
    display: flex;
    gap: 15px;
    padding: 15px;
}

.top-stories-side-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.article-category-sm {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.top-stories-side-item h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}

.top-stories-side-item h3 a {
    color: var(--black);
}

.top-stories-side-item h3 a:hover {
    color: var(--gold);
}

.article-time-sm {
    font-size: 11px;
    color: #999;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header .view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    transition: var(--transition);
}

.section-header .view-all:hover {
    color: var(--gold);
}

/* Featured Section */
.featured-section {
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.featured-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card-content {
    padding: 20px;
}

.featured-card-content .article-category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.featured-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.featured-card-content h3 a {
    color: var(--black);
}

.featured-card-content h3 a:hover {
    color: var(--gold);
}

.featured-card-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Category Sections */
.category-section {
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.category-card-content {
    padding: 15px;
}

.category-card-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-card-content h3 a {
    color: var(--black);
}

.category-card-content h3 a:hover {
    color: var(--gold);
}

/* Latest Section */
.latest-section {
    margin-bottom: 40px;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.latest-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.latest-item:hover {
    transform: translateY(-3px);
}

.latest-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.latest-content {
    padding: 15px;
}

.latest-content .article-category-sm {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.latest-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.latest-content h3 a {
    color: var(--black);
}

.latest-content h3 a:hover {
    color: var(--gold);
}

.latest-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .top-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .top-stories-main img {
        height: 350px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-stories-main img {
        height: 250px;
    }
    
    .top-stories-main-content {
        padding: 20px;
    }
    
    .top-stories-main-content h2 {
        font-size: 20px;
    }
    
    .top-stories-side-item a {
        flex-direction: column;
    }
    
    .top-stories-side-item img {
        width: 100%;
        height: 150px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-item img {
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .top-stories-main img {
        height: 200px;
    }
    
    .top-stories-main-content h2 {
        font-size: 18px;
    }
    
    .top-stories-main-content p {
        font-size: 13px;
    }
    
    .featured-card img {
        height: 180px;
    }
    
    .category-card img {
        height: 140px;
    }
}
/* =============================================
   AD SECTIONS - INDEX PAGE
   ============================================= */
.ad-section {
    margin: 0px 0;
    padding: 0px 0;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.ad-section .ad-container {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ad-section .ad-label {
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 9px;
    color: #aaa;
    background: rgba(255,255,255,0.9);
    padding: 0 5px;
    border-radius: 2px;
    font-weight: 600;
}

.ad-section .ad-text {
    color: #bbb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   RESPONSIVE - AD SECTIONS
   ============================================= */
@media (max-width: 768px) {
    .ad-section {
        margin: 0px 0;
        padding: 8px 0;
    }
    
    .ad-section .ad-container {
        height: 60px;
        max-width: 100%;
    }
    
    .ad-section .ad-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .ad-section {
        margin: 0px 0;
        padding: 5px 0;
    }
    
    .ad-section .ad-container {
        height: 50px;
    }
    
    .ad-section .ad-text {
        font-size: 9px;
    }
}
/* =============================================
   TWO COLUMN SECTION - EDUCATION & MINING
   ============================================= */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.two-col-column {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 20px;
}

.two-col-column .section-header {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.two-col-column .section-header h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.two-col-column .section-header h2 span {
    color: var(--gold);
}

.two-col-column .section-header .view-all {
    font-size: 12px;
}

.two-col-stories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.two-col-story {
    background: var(--gray);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.two-col-story:hover {
    transform: translateX(5px);
}

.two-col-story a {
    display: flex;
    gap: 15px;
    padding: 12px;
}

.two-col-story img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.two-col-story-content {
    flex: 1;
}

.two-col-story-content .article-category-sm {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.two-col-story-content h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.two-col-story-content h3 a {
    color: var(--black);
}

.two-col-story-content h3 a:hover {
    color: var(--gold);
}

.two-col-story-content .article-time-sm {
    font-size: 10px;
    color: #999;
}

/* =============================================
   RESPONSIVE - TWO COLUMN SECTION
   ============================================= */
@media (max-width: 992px) {
    .two-col-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .two-col-column {
        padding: 15px;
    }
    
    .two-col-story a {
        flex-direction: column;
        padding: 10px;
    }
    
    .two-col-story img {
        width: 100%;
        height: 120px;
    }
    
    .two-col-column .section-header h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .two-col-column {
        padding: 10px;
    }
    
    .two-col-story img {
        height: 100px;
    }
    
    .two-col-story-content h3 {
        font-size: 13px;
    }
}
/* =============================================
   HIGHLIGHT SECTION - ENTREPRENEURSHIP
   ============================================= */
.highlight-section {
    background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(255,215,0,0.02) 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.highlight-section .section-header h2 {
    color: var(--black);
}

.highlight-section .section-header h2 span {
    color: var(--gold);
}

.highlight-card {
    border: 1px solid rgba(255,215,0,0.2);
}

.highlight-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(255,215,0,0.15);
}

/* =============================================
   RESPONSIVE - HIGHLIGHT SECTION
   ============================================= */
@media (max-width: 768px) {
    .highlight-section {
        padding: 15px;
    }
}
/* =============================================
   ENTREPRENEURSHIP SECTION - CORE VISION
   ============================================= */
.entrepreneurship-section {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,215,0,0.02) 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    margin-bottom: 40px;
}

.entrepreneurship-section .section-header h2 {
    color: var(--black);
}

.entrepreneurship-section .section-header h2 span {
    color: var(--gold);
}

.entrepreneurship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.entrepreneurship-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,215,0,0.15);
}

.entrepreneurship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.entrepreneurship-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.entrepreneurship-card-content {
    padding: 20px;
}

.entrepreneurship-card-content .article-category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.entrepreneurship-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.entrepreneurship-card-content h3 a {
    color: var(--black);
}

.entrepreneurship-card-content h3 a:hover {
    color: var(--gold);
}

.entrepreneurship-card-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

/* =============================================
   RESPONSIVE - ENTREPRENEURSHIP SECTION
   ============================================= */
@media (max-width: 992px) {
    .entrepreneurship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .entrepreneurship-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .entrepreneurship-grid {
        grid-template-columns: 1fr;
    }
    
    .entrepreneurship-section {
        padding: 15px;
    }
    
    .entrepreneurship-card img {
        height: 200px;
    }
}
/* =============================================
   THREE COLUMN SECTION - ARTS, TRAVEL, WORLD
   ============================================= */
.three-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.three-col-column {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 20px;
}

.three-col-column .section-header {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.three-col-column .section-header h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.three-col-column .section-header h2 span {
    color: var(--gold);
}

.three-col-column .section-header .view-all {
    font-size: 11px;
}

.three-col-stories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.three-col-story {
    background: var(--gray);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.three-col-story:hover {
    transform: translateX(5px);
}

.three-col-story a {
    display: flex;
    gap: 12px;
    padding: 12px;
}

.three-col-story img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.three-col-story-content {
    flex: 1;
}

.three-col-story-content h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.three-col-story-content h3 a {
    color: var(--black);
}

.three-col-story-content h3 a:hover {
    color: var(--gold);
}

.three-col-story-content .article-time-sm {
    font-size: 10px;
    color: #999;
}

/* =============================================
   RESPONSIVE - THREE COLUMN SECTION
   ============================================= */
@media (max-width: 992px) {
    .three-col-section {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .three-col-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .three-col-column {
        padding: 15px;
    }
    
    .three-col-story a {
        flex-direction: column;
        padding: 10px;
    }
    
    .three-col-story img {
        width: 100%;
        height: 120px;
    }
    
    .three-col-column .section-header h2 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .three-col-column {
        padding: 10px;
    }
    
    .three-col-story img {
        height: 100px;
    }
    
    .three-col-story-content h3 {
        font-size: 13px;
    }
}
/* =============================================
   ARTICLE PAGE - 2/3 - 1/3 LAYOUT
   ============================================= */

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.article-main {
    min-width: 0;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar Ad */
.ad-sidebar {
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    padding: 10px;
}

.ad-sidebar-container {
    width: 100%;
    max-width: 300px;
    height: 250px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ad-sidebar-container .ad-label {
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 9px;
    color: #aaa;
    background: rgba(255,255,255,0.9);
    padding: 0 5px;
    border-radius: 2px;
    font-weight: 600;
}

.ad-sidebar-container .ad-text {
    color: #bbb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Sidebar Sections */
.sidebar-section {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-section h3 span {
    color: var(--gold);
}

/* Sidebar Popular Stories */
.sidebar-story {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-story:last-child {
    border-bottom: none;
}

.sidebar-story a {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sidebar-story img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sidebar-story-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 3px;
}

.sidebar-story-content h4 a {
    color: var(--black);
}

.sidebar-story-content h4 a:hover {
    color: var(--gold);
}

.sidebar-story-content .article-time-sm {
    font-size: 10px;
    color: #999;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-categories li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.sidebar-categories .badge {
    background: var(--gray);
    color: #888;
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-box h3 {
    border-bottom-color: var(--gold);
    color: var(--white);
}

.newsletter-box p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-box input {
    padding: 10px 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 14px;
}

.newsletter-box input::placeholder {
    color: #888;
}

.newsletter-box input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-box .btn-gold {
    width: 100%;
}

/* =============================================
   RESPONSIVE - ARTICLE PAGE
   ============================================= */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ad-sidebar-container {
        max-width: 100%;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .article-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ad-sidebar-container {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .ad-sidebar-container {
        height: 50px;
    }
    
    .sidebar-story a {
        flex-direction: column;
        text-align: center;
    }
    
    .sidebar-story img {
        width: 100%;
        height: 120px;
    }
}
/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
    background: black;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--gold);
}

.site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Footer Top */
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand .footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-brand p {
    color: #888;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: #aaa;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Footer Social Bar */
.footer-social-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social .social-label {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #aaa;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social .social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-subscribe .btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    font-size: 13px;
    color: #666;
}

.footer-bottom .gold {
    color: var(--gold);
}

.footer-bottom .footer-tagline {
    color: #555;
    font-size: 12px;
    font-style: italic;
}

/* =============================================
   RESPONSIVE - FOOTER
   ============================================= */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .site-footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-social-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-subscribe {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .site-footer .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand .footer-logo img {
        max-height: 32px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .footer-social .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 11px;
    }
}
/* =============================================
   SEARCH PAGE
   ============================================= */
.search-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Search Header */
.search-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
}

.search-header h1 {
    font-size: 32px;
    font-weight: 800;
}

.search-header h1 span {
    color: var(--gold);
}

.search-header .search-query {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.search-header .search-query strong {
    color: var(--black);
}

.search-header .search-count {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

/* Search Filters */
.search-filters {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    align-items: end;
}

.filter-row-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: var(--white);
    transition: var(--transition);
    width: 100%;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

.filter-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: end;
}

.filter-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
}

.filter-actions .btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid #ddd;
    transition: var(--transition);
}

.filter-actions .btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Search Results */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-result-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.search-result-image {
    flex-shrink: 0;
    width: 200px;
}

.search-result-image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-content .article-category-sm {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    width: fit-content;
}

.search-result-content .article-subcategory {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 10px;
    border-radius: 3px;
    margin-left: 5px;
}

.search-result-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-result-content h3 a {
    color: var(--black);
}

.search-result-content h3 a:hover {
    color: var(--gold);
}

.search-result-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.search-result-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
    margin-top: auto;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.no-results .no-results-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.no-results h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.no-results p {
    color: #888;
    font-size: 16px;
    margin-bottom: 20px;
}

/* =============================================
   RESPONSIVE - SEARCH PAGE
   ============================================= */
@media (max-width: 992px) {
    .filter-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-row-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-result-item {
        flex-direction: column;
    }
    
    .search-result-image {
        width: 100%;
    }
    
    .search-result-image img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .search-page {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .search-header h1 {
        font-size: 26px;
    }
    
    .search-filters {
        padding: 20px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .filter-row-2 {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: row;
    }
    
    .search-result-item {
        padding: 15px;
    }
    
    .search-result-image img {
        height: 150px;
    }
    
    .search-result-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .search-header h1 {
        font-size: 22px;
    }
    
    .search-filters {
        padding: 15px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .search-result-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .search-result-image img {
        height: 120px;
    }
}
/* =============================================
   STICKY HEADER DROPDOWN FIXES
   ============================================= */

/* Ensure header doesn't clip dropdowns - Desktop */
.menu-bar,
.menu-bar .container,
.menu-bar-inner,
.menu-categories,
.menu-categories-list,
.menu-categories-list > li {
    overflow: visible !important;
}

/* Ensure dropdown menus have proper z-index */
.menu-categories .dropdown-menu {
    z-index: 9999 !important;
}

.more-dropdown .dropdown-sub .sub-menu {
    z-index: 9999 !important;
}

.africa-dropdown-panel {
    z-index: 9999 !important;
}

/* =============================================
   MOBILE SPECIFIC - Fix dropdown clipping
   ============================================= */
@media (max-width: 768px) {
    /* Reset overflow for mobile menu */
    .menu-bar,
    .menu-bar .container,
    .menu-bar-inner {
        overflow: visible !important;
    }
    
    /* Mobile menu should be visible and not clip */
    .main-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--black-light);
        border-top: 1px solid #333;
        overflow: visible !important;
        position: relative;
        z-index: 999;
    }
    
    .main-menu.open {
        display: flex;
    }
    
    .main-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        position: relative;
        overflow: visible !important;
    }
    
    .main-menu > li > a {
        padding: 12px 20px;
        white-space: normal;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Mobile dropdown menus - should expand and not clip */
    .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100%;
        border-top: none;
        border-left: 3px solid var(--gold);
        box-shadow: none;
        background: rgba(0,0,0,0.3);
        overflow: visible !important;
        z-index: auto !important;
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
    
    /* More dropdown on mobile */
    .more-dropdown .dropdown-sub .sub-menu {
        position: static !important;
        border-left: 2px solid var(--gold);
        margin-left: 15px;
        overflow: visible !important;
        z-index: auto !important;
    }
    
    .more-dropdown .dropdown-sub .sub-menu li a {
        padding-left: 35px;
    }
    
    /* Mobile dropdown items should be clickable */
    .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        width: 100%;
    }
    
    /* Ensure no hidden overflow on mobile */
    .main-nav,
    .main-nav-inner {
        overflow: visible !important;
    }
    
    .main-nav .container {
        overflow: visible !important;
    }
}
/* =============================================
   AD SECTIONS
   ============================================= */
.ad-section {
    margin: 0px 0;
    padding: 0px 0px 10px 0px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid transparent;
    text-align: center;
}

.ad-section .ad-wrapper {
    max-width: 728px;
    margin: 0 auto;
    position: relative;
}

.ad-section .ad-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Sidebar ad */
.ad-article-sidebar .ad-wrapper {
    max-width: 300px;
}

.ad-article-sidebar .ad-wrapper img {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .ad-section {
        margin: 0px 0;
        padding: 10px 0;
    }
    
    .ad-section .ad-wrapper {
        max-width: 100%;
    }
    
    .ad-article-sidebar .ad-wrapper {
        max-width: 100%;
    }
}
/* =============================================
   MORE DROPDOWN - FORCE VISIBLE
   ============================================= */

/* Make sure the dropdown appears */
.more-dropdown {
    position: relative !important;
    overflow: visible !important;
}

.more-dropdown .more-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background: #000000 !important;
    border-top: 3px solid #FFD700 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    padding: 8px 0 !important;
    z-index: 99999 !important;
    margin: 0 !important;
    list-style: none !important;
}

.more-dropdown:hover .more-menu {
    display: block !important;
}

/* Each item in the MORE dropdown */
.more-sub-item {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.more-sub-item:last-child {
    border-bottom: none !important;
}

/* The link */
.more-sub-item .more-sub-toggle {
    display: block !important;
    padding: 10px 20px !important;
    color: #FFFFFF !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.more-sub-item .more-sub-toggle:hover {
    background: #FFD700 !important;
    color: #000000 !important;
}

.more-sub-item .more-sub-toggle .menu-caret {
    float: right !important;
    font-size: 10px !important;
    color: #999 !important;
    margin-left: 8px !important;
}

/* Sub-menu for items with subcategories */
.more-sub-item .sub-menu {
    display: none !important;
    position: absolute !important;
    left: 100% !important;
    top: 0 !important;
    min-width: 200px !important;
    background: #000000 !important;
    border-top: 3px solid #FFD700 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    padding: 8px 0 !important;
    z-index: 99999 !important;
    margin: 0 !important;
    list-style: none !important;
}

.more-sub-item:hover .sub-menu {
    display: block !important;
}

.more-sub-item .sub-menu li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 0 !important;
    margin: 0 !important;
}

.more-sub-item .sub-menu li:last-child {
    border-bottom: none !important;
}

.more-sub-item .sub-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #FFFFFF !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.more-sub-item .sub-menu li a:hover {
    background: #FFD700 !important;
    color: #000000 !important;
}

/* Scrollbar */
.more-dropdown .more-menu::-webkit-scrollbar {
    width: 4px;
}

.more-dropdown .more-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.more-dropdown .more-menu::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 2px;
}

/* Force visibility on hover */
.more-dropdown:hover .more-menu {
    display: block !important;
}

.more-dropdown .more-menu li {
    display: block !important;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}
/* =============================================
   MENU BAR - FIX OVERFLOW
   ============================================= */

.menu-bar {
    overflow: visible !important;
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
}

.menu-bar .container {
    overflow: visible !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.menu-bar-inner {
    overflow: visible !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.menu-categories {
    overflow: visible !important;
    flex: 1;
    display: flex;
    justify-content: left;
    min-width: 0;
}

.menu-categories-list {
    overflow: visible !important;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.menu-categories-list > li {
    overflow: visible !important;
    position: relative;
    flex-shrink: 0;
}

.menu-categories-list > li > a {
    display: block;
    color: var(--black);
    padding: 6px 10px;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
}
/* =============================================
   FOOTER SOCIAL ICONS - MATERIAL DESIGN
   ============================================= */

/* Make sure Font Awesome is loaded in your header */
/* Add this to your header.php or all_header.php: */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> */

.footer-social-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social .social-label {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #aaa;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-social .social-icon:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    border-color: #FFD700;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

/* Individual social icon colors on hover */
.footer-social .social-icon:hover .fa-facebook-f {
    color: #1877F2;
}

.footer-social .social-icon:hover .fa-twitter {
    color: #1DA1F2;
}

.footer-social .social-icon:hover .fa-linkedin-in {
    color: #0A66C2;
}

.footer-social .social-icon:hover .fa-youtube {
    color: #FF0000;
}

.footer-social .social-icon:hover .fa-instagram {
    color: #E4405F;
}

.footer-social .social-icon:hover .fa-tiktok {
    color: #000000;
}

/* Override the gold background on hover for social icons */
.footer-social .social-icon:hover {
    background: rgba(255,215,0,0.15);
    border-color: #FFD700;
}

.footer-subscribe .btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-social-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-subscribe {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-social .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
/* =============================================
   CAREERS PAGE STYLES
   ============================================= */

/* Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}

.careers-hero .page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.careers-hero .page-hero-content h1 span {
    color: #f5c518;
}

.careers-hero .page-hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #f5c518;
    background: rgba(245, 197, 24, 0.1);
}

/* Stats Section */
.careers-stats {
    padding: 40px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Why Join Us */
.why-join {
    padding: 60px 0;
}

.why-join .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-join .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-join-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.why-join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #f5c518;
}

.why-join-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a2e;
}

.why-join-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.why-join-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Job Openings */
.job-openings {
    padding: 60px 0;
    background: #f8f9fa;
}

.job-openings .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.job-openings .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

/* Job Filters */
.job-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
}

.filter-btn:hover {
    border-color: #f5c518;
    color: #1a1a2e;
}

.filter-btn.active {
    background: #f5c518;
    border-color: #f5c518;
    color: #1a1a2e;
}

/* Job Listings */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #f5c518;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.job-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.job-title-wrapper h3 {
    font-size: 20px;
    margin: 0;
}

.job-title-wrapper h3 a {
    color: #1a1a2e;
    text-decoration: none;
}

.job-title-wrapper h3 a:hover {
    color: #f5c518;
}

.job-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-type-full-time {
    background: #e8f5e9;
    color: #2e7d32;
}

.job-type-internship {
    background: #fff3e0;
    color: #e65100;
}

.job-type-contract {
    background: #e3f2fd;
    color: #0d47a1;
}

.job-type-part-time {
    background: #fce4ec;
    color: #c62828;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #888;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta i {
    color: #f5c518;
    width: 16px;
}

.job-description {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.job-requirements {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 6px;
}

.job-requirements strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1a1a2e;
}

.job-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.job-requirements ul li {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.job-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.job-actions .btn-sm {
    padding: 6px 18px;
    font-size: 12px;
}

/* No Jobs */
.no-jobs {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
}

.no-jobs i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

.no-jobs h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.no-jobs p {
    color: #888;
}

/* Spontaneous Application */
.spontaneous-apply {
    text-align: center;
    margin-top: 40px;
    padding: 35px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.spontaneous-apply h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.spontaneous-apply p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 20px;
}

/* Application Form */
.apply-section {
    padding: 60px 0;
}

.apply-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.apply-section .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.apply-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.apply-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.apply-form .form-group {
    margin-bottom: 20px;
}

.apply-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.apply-form .form-group .required {
    color: #e74c3c;
}

.apply-form .form-group input,
.apply-form .form-group select,
.apply-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.apply-form .form-group input:focus,
.apply-form .form-group select:focus,
.apply-form .form-group textarea:focus {
    outline: none;
    border-color: #f5c518;
}

.apply-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload */
.file-upload-wrapper {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-wrapper:hover {
    border-color: #f5c518;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    font-size: 14px;
    color: #666;
}

.file-upload-hint {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

/* Checkbox */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a {
    color: #f5c518;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
}

/* FAQ Section */
.careers-faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.careers-faq .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #f5c518;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-hero .page-hero-content h1 {
        font-size: 32px;
    }

    .careers-hero .page-hero-content p {
        font-size: 16px;
    }

    .apply-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .job-header {
        flex-direction: column;
    }

    .job-actions {
        width: 100%;
    }

    .job-actions .btn {
        width: 100%;
        text-align: center;
    }

    .apply-form-wrapper {
        padding: 25px;
    }

    .job-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .why-join-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 28px;
    }

    .job-title-wrapper h3 {
        font-size: 17px;
    }
}
/* =============================================
   JOB DETAILS PAGE STYLES
   ============================================= */

/* Job Hero */
.job-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 40px 0 50px;
    color: #fff;
}

.job-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.job-hero-breadcrumb {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

.job-hero-breadcrumb a {
    color: #f5c518;
    text-decoration: none;
}

.job-hero-breadcrumb a:hover {
    text-decoration: underline;
}

.job-hero-breadcrumb .separator {
    margin: 0 8px;
    color: #666;
}

.job-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.job-hero-info h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
}

.job-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #ccc;
}

.job-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-hero-meta i {
    color: #f5c518;
    width: 16px;
}

.job-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-hero-actions .btn-outline {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.job-hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* Job Details Layout */
.job-details-section {
    padding: 50px 0 30px;
}

.job-details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Job Details Main */
.job-detail-block {
    margin-bottom: 40px;
}

.job-detail-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5c518;
}

.job-detail-block p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.job-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.job-detail-list li i {
    color: #f5c518;
    margin-top: 3px;
    min-width: 18px;
}

.requirements-list li i {
    color: #2e7d32;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
}

.benefit-item i {
    color: #f5c518;
    font-size: 16px;
    min-width: 20px;
}

/* Job Details Sidebar */
.job-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Job Summary */
.job-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.job-summary .summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #888;
    font-size: 13px;
}

.summary-value {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.job-type-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.job-type-badge.full-time {
    background: #e8f5e9;
    color: #2e7d32;
}

.job-type-badge.internship {
    background: #fff3e0;
    color: #e65100;
}

.job-type-badge.contract {
    background: #e3f2fd;
    color: #0d47a1;
}

.job-type-badge.part-time {
    background: #fce4ec;
    color: #c62828;
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* Share Buttons */
.job-share .share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-share .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.job-share .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.job-share .share-btn.facebook { background: #3b5998; }
.job-share .share-btn.twitter { background: #1da1f2; }
.job-share .share-btn.linkedin { background: #0077b5; }
.job-share .share-btn.email { background: #ea4335; }

/* Related Jobs */
.related-jobs {
    padding: 50px 0 60px;
    background: #f8f9fa;
}

.related-jobs .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.related-jobs .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-job-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.related-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #f5c518;
}

.related-job-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-job-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.related-job-card h3:hover {
    color: #f5c518;
}

.related-job-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.related-job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-job-meta i {
    color: #f5c518;
    width: 14px;
}

.related-job-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px;
}

.related-job-type {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-job-type.full-time {
    background: #e8f5e9;
    color: #2e7d32;
}

.related-job-type.internship {
    background: #fff3e0;
    color: #e65100;
}

.related-job-type.contract {
    background: #e3f2fd;
    color: #0d47a1;
}

.related-job-type.part-time {
    background: #fce4ec;
    color: #c62828;
}

.related-jobs-footer {
    text-align: center;
    margin-top: 35px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .related-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .job-details-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .job-hero-header {
        flex-direction: column;
    }

    .job-hero-actions {
        width: 100%;
    }

    .job-hero-actions .btn {
        flex: 1;
        text-align: center;
    }

    .job-hero-info h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .job-hero {
        padding: 30px 0 40px;
    }

    .job-hero-meta {
        gap: 12px;
        font-size: 13px;
    }

    .job-hero-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .job-detail-block h2 {
        font-size: 19px;
    }

    .related-jobs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .job-hero-info h1 {
        font-size: 24px;
    }

    .job-hero-actions {
        flex-direction: column;
    }

    .job-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .job-summary .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .summary-value {
        text-align: left;
    }
}
/* =============================================
   ADVERTISE PAGE STYLES
   ============================================= */

/* Hero Section */
.advertise-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}

.advertise-hero .page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.advertise-hero .page-hero-content h1 span {
    color: #f5c518;
}

.advertise-hero .page-hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ccc;
    line-height: 1.6;
}

/* Ad Stats */
.ad-stats {
    padding: 40px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.ad-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ad-stats .stat-item {
    text-align: center;
}

.ad-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}

.ad-stats .stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Why Advertise */
.why-advertise {
    padding: 60px 0;
}

.why-advertise .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-advertise .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.why-advertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-advertise-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.why-advertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #f5c518;
}

.why-advertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a2e;
}

.why-advertise-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.why-advertise-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Audience Section */
.audience-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.audience-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.audience-section .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.audience-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5c518;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.audience-label {
    flex: 1;
    font-size: 14px;
    color: #555;
    min-width: 60px;
}

.progress-bar {
    flex: 2;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #f5c518;
    border-radius: 4px;
    transition: width 1s ease;
}

.audience-percent {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    min-width: 40px;
    text-align: right;
}

/* Ad Packages */
.ad-packages {
    padding: 60px 0;
}

.ad-packages .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ad-packages .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #f5c518;
}

.package-card.featured {
    border-color: #f5c518;
    position: relative;
}

.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f5c518;
    color: #1a1a2e;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-icon {
    width: 50px;
    height: 50px;
    background: #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.package-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px;
    flex: 1;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.package-feature {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-feature i {
    color: #f5c518;
    font-size: 12px;
}

.package-price {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    vertical-align: top;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
}

.price-period {
    font-size: 13px;
    color: #888;
    display: block;
    margin-top: 2px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Testimonials */
.ad-testimonials {
    padding: 60px 0;
    background: #f8f9fa;
}

.ad-testimonials .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ad-testimonials .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-quote {
    position: absolute;
    top: -5px;
    left: -10px;
    font-size: 24px;
    color: #f5c518;
    opacity: 0.5;
}

.testimonial-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #1a1a2e;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: #888;
}

/* Ad Placements */
.ad-placements {
    padding: 60px 0;
}

.ad-placements .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ad-placements .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.placement-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.placement-image {
    position: relative;
    height: 200px;
    background: #f0f0f0;
    overflow: hidden;
}

.placement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placement-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.placement-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 15px 20px 8px;
}

.placement-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 20px 20px;
}

/* CTA Section */
.ad-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    text-align: center;
}

.ad-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ad-cta-content h2 span {
    color: #f5c518;
}

.ad-cta-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ad-cta-content .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}

.ad-cta-content .btn-outline:hover {
    border-color: #f5c518;
    background: rgba(245, 197, 24, 0.1);
}

.cta-email {
    margin-top: 10px;
}

.cta-email i {
    color: #f5c518;
    margin-right: 10px;
}

.cta-email a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.cta-email a:hover {
    color: #f5c518;
}

/* Ad FAQ */
.ad-faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.ad-faq .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #f5c518;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Form */
.ad-contact-form {
    padding: 60px 0;
}

.ad-contact-form .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ad-contact-form .section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.contact-form .form-group .required {
    color: #e74c3c;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #f5c518;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
    .why-advertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .placements-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ad-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advertise-hero .page-hero-content h1 {
        font-size: 32px;
    }
    
    .why-advertise-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .placements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .ad-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ad-stats .stat-number {
        font-size: 28px;
    }
    
    .ad-cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .why-advertise-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ad-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .advertise-hero {
        padding: 50px 0 40px;
    }
    
    .advertise-hero .page-hero-content h1 {
        font-size: 28px;
    }
}