:root {
    --primary: #0084d8;
    --primary-color: #0084d8;
    /* Added for compatibility with views/home.php */
    --primary-dark: #006bb3;
    --secondary: #6c757d;
    --dark: #1e293b;
    --light: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --vip-color: #ffc107;
    --vip-bg: #fff3cd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8fafc;
    color: var(--dark);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

ul {
    list-style: none;
}

/* Header V2 */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.highlight-link {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 6px;
}

.highlight-link:hover {
    background-color: var(--primary-dark);
}

.burger {
    display: none;
}

/* Hero V2 */
.hero-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-v2 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-v2 p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.search-box-v2 {
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid transparent;
}

.input-group:focus-within {
    border-color: var(--primary);
    background: var(--white);
}

.input-group i {
    color: var(--secondary);
    margin-right: 12px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 0;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: var(--dark);
}

.search-box-v2 button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.search-box-v2 button:hover {
    background-color: var(--primary-dark);
}

/* Ad Banners (from style.css) */
.ad-section {
    padding: 20px 0;
}

.ad-banner {
    background-color: #e9ecef;
    color: #999;
    text-align: center;
    padding: 20px;
    border: 1px dashed #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    border-radius: 8px;
    /* Added for consistency with v2 */
}

.ad-banner.in-feed {
    margin: 20px 0;
}

.ad-banner.vertical {
    flex-direction: column;
    min-height: 250px;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 32px;
    margin-top: 20px;
    /* Changed from -40px to fix overlap */
    position: relative;
    z-index: 20;
    margin-bottom: 60px;
}

/* Sidebar Left (Filters) */
.filter-box {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.filter-box h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary);
}

/* Job Feed */
.job-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.feed-header h2 {
    font-size: 1.25rem;
}

.job-count {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Modern Job Card */
.job-card-v2 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.job-card-v2:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.job-card-v2.featured {
    border-left: 4px solid var(--vip-color);
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--vip-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.company-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.header-text h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.header-text p {
    font-size: 0.9rem;
    color: var(--secondary);
}

.save-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    font-size: 1.2rem;
}

.save-btn:hover {
    color: var(--primary);
}

.card-body p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.tags {
    display: flex;
    gap: 8px;
}

.badge {
    background: #f1f5f9;
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.posted-time {
    font-size: 0.85rem;
    color: #94a3b8;
}

.apply-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.apply-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Sidebar Right (VIP) */
.vip-box-v2 {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.vip-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.vip-box-v2 h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.vip-box-v2 p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.vip-btn {
    background: var(--white);
    color: #128C7E;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.2s;
}

.vip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive V2 */
@media screen and (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .left-sidebar,
    .right-sidebar {
        display: none;
        /* Hide sidebars on small screens for simple demo */
    }
}

@media screen and (max-width: 768px) {
    .search-box-v2 {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        /* Changed from absolute to fixed */
        right: 0;
        height: 100vh;
        top: 70px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        border-top: 1px solid var(--border);
        padding-top: 2rem;
        gap: 2rem;
        z-index: 99;
        /* Ensure it's above other elements */
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        display: flex;
        /* Ensure it overrides display: none */
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--dark);
        margin: 5px;
        transition: all 0.3s ease;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}


/* Footer V2 */
.footer-v2 {
    background-color: #333;
    color: #eee;
    /* Changed from #94a3b8 */
    padding: 40px 0;
    margin-top: auto;
}

.footer-v2 p {
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

/* .footer-v2 i { color: #ef4444; } Removed */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bbb;
    /* Changed from #94a3b8 */
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    /* gap: 16px; Removed gap to rely on margin as per index.html */
}

.socials a {
    color: #ffffff;
    font-size: 1.5rem;
    margin-right: 25px;
    /* Increased from 15px */
    transition: color 0.2s;
}

.socials a:hover {
    color: var(--primary);
    /* transform: translateY(-2px); Removed transform to match index.html */
}

.copyright-box {
    border-top: 1px solid #444;
    /* Changed from rgba */
    padding-top: 24px;
    margin-top: 20px;
    color: #888;
    /* Changed from #64748b */
    font-size: 0.85rem;
}

/* --- NEW STYLES --- */

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
}

.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 132, 216, 0.1);
}

/* Post Page Styles */
.post-container {
    max-width: 800px;
    margin: 3rem auto;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

.post-meta {
    color: var(--secondary);
    font-size: 0.95rem;
}

.post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.share-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

/* Services Page Styles */
.services-hero {
    text-align: center;
    margin: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: #f0f9ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--primary);
}

.service-price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.service-price-list li:last-child {
    border-bottom: none;
}

.whatsapp-cta-section {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('patterns/whatsapp-bg.png');
    /* You might want a pattern here */
    opacity: 0.1;
}

.btn-whatsapp {
    background: white;
    color: #128C7E;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* VIP Page Enhancements */
.vip-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.vip-card-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.vip-card-enhanced.premium {
    border-color: #FFD700;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 25px -5px rgba(255, 215, 0, 0.3);
}

.vip-header-card {
    background: #f8fafc;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.vip-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1rem 0;
}

.vip-benefits {
    padding: 2rem;
}

.vip-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #475569;
}

.vip-benefits i {
    color: #22c55e;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .vip-card-enhanced.premium {
        transform: scale(1);
    }
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--secondary);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #cbd5e1;
}

.breadcrumb .current {
    color: var(--dark);
    font-weight: 500;
}

/* ===== ENHANCED CONTACT PAGE ===== */
.contact-hero-section {
    margin-bottom: 0;
}

.contact-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateX(8px);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.contact-schedule {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid #d1fae5;
}

.contact-schedule h4 {
    color: #065f46;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-schedule p {
    color: #047857;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== ENHANCED POST PAGE ===== */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 4rem;
}

.post-author-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.author-meta {
    font-size: 0.85rem;
    color: var(--secondary);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--secondary);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.post-tag {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.share-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid #e2e8f0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.post-vip-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.post-vip-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

.post-vip-cta h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.post-vip-cta p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.btn-vip-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFD700;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
}

.btn-vip-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

/* ===== ENHANCED SERVICES PAGE ===== */
.services-hero {
    text-align: center;
    margin: 0;
    padding: 3rem 0;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--primary);
}

.service-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.95rem;
}

.service-price-list li strong {
    color: var(--primary);
    font-weight: 700;
}

.vip-whatsapp-exclusive {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.vip-whatsapp-exclusive::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
}

.vip-exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ===== ENHANCED VAGA DETAIL ===== */
.vaga-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.vaga-detail-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.vaga-company-logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid #f1f5f9;
    flex-shrink: 0;
}

.vaga-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.vaga-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.vaga-tag.location {
    background: #fef3c7;
    color: #92400e;
}

.vaga-tag.type {
    background: #dbeafe;
    color: #1e40af;
}

.vaga-tag.date {
    background: #f1f5f9;
    color: #475569;
}

.vaga-detail-body {
    padding: 2rem;
}

.vaga-section {
    margin-bottom: 2rem;
}

.vaga-section h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vaga-section h3 i {
    color: var(--primary);
    font-size: 0.9rem;
}

.vaga-content {
    line-height: 1.8;
    color: #475569;
    font-size: 0.95rem;
}

.vaga-apply-box {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.vaga-detail-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: #fafbfc;
}

.vaga-action-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-action.primary {
    background: var(--primary);
    color: #fff;
}

.btn-action.primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-action.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-action.whatsapp:hover {
    background: #1ea952;
    color: #fff;
}

.btn-action.outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--border);
}

.btn-action.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Sidebar VIP CTA */
.sidebar-vip-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sidebar-vip-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
}

.sidebar-vip-cta .vip-crown {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.sidebar-vip-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
    position: relative;
}

.sidebar-vip-cta p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
}

.sidebar-vip-cta .feature-list {
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
}

.sidebar-vip-cta .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.sidebar-vip-cta .feature-list li i {
    color: #FFD700;
    font-size: 0.75rem;
}

/* ===== ENHANCED VIP PAGE ===== */
.vip-hero-enhanced {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1a2e 100%);
    color: white;
    padding: 60px 24px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-hero-enhanced::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.vip-hero-enhanced .crown-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.vip-hero-enhanced h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    position: relative;
}

.vip-hero-enhanced p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* VIP Comparison Table */
.vip-comparison {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.vip-comparison h2 {
    text-align: center;
    padding: 2rem;
    font-size: 1.5rem;
    color: var(--dark);
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
    width: 50%;
}

.comparison-table th.free-col {
    background: #f8fafc;
    color: var(--secondary);
}

.comparison-table th.vip-col {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.comparison-table td {
    padding: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    color: #475569;
    font-weight: 500;
}

.comparison-table .check {
    color: #22c55e;
    font-size: 1.1rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.1rem;
}

.vip-card-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.vip-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vip-whatsapp-exclusive-vip {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.vip-whatsapp-exclusive-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('patterns/whatsapp-bg.png');
    opacity: 0.05;
}

.whatsapp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.whatsapp-feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.whatsapp-feature-item i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.whatsapp-feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.whatsapp-feature-item p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-green {
    animation: pulse 2s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.pulse-gold {
    animation: pulseGold 2s infinite;
}

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .vip-hero-enhanced h1 {
        font-size: 1.75rem;
    }

    .vip-hero-enhanced .crown-icon {
        font-size: 2.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table td,
    .comparison-table th {
        padding: 0.75rem 0.5rem;
    }

    .whatsapp-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vaga-detail-header {
        flex-direction: column;
    }

    .vaga-detail-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .vaga-action-btns {
        justify-content: center;
    }

    .post-author-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Privacy Page */
.content-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    border: 1px solid var(--border);
}

.content-box h2 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-box p {
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.content-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-box ul li {
    list-style: disc;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}