:root {
    --bg-dark: #0a0a0c;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --accent: #10b981;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Styles */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--text-main);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Search Container */
.search-container {
    display: flex;
    padding: 1rem;
    border-radius: 100px;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
}

.search-input input,
.search-input select {
    background: transparent;
    border: none;
    color: #ffffff !important;
    width: 100%;
    padding-left: 0.5rem;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input select option {
    background-color: #1a1a2e !important;
    color: #ffffff !important;
    padding: 10px;
}

/* Force dropdown styling for better browser compatibility */
.search-input select {
    color-scheme: dark;
}

.search-input select:focus option,
.search-input select option:checked {
    background-color: #7c3aed !important;
    color: #ffffff !important;
}

.btn-search {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0 2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
}

/* Job Feed */
.job-feed {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
}

.view-all {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* VIP Alerts Banner */
@media (min-width: 768px) {
    .vip-alerts-content {
        flex-direction: row !important;
    }
    
    .vip-text {
        text-align: left !important;
        margin-right: 2rem !important;
        margin-bottom: 0 !important;
    }
    
    .vip-text p {
        margin: 0 !important;
    }
}

.specialty-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.job-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: black;
    padding: 0.2rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

.job-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.job-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item span {
    color: var(--text-main);
}

.pay-text {
    color: var(--accent) !important;
    font-weight: 600;
}

.btn-outline {
    width: 100%;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-outline:hover {
    background: var(--glass-bg);
}

/* Footer */
.glass-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
    text-align: center;
    color: var(--text-muted);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: #111;
    margin: 5vh auto;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    width: 90%;
    max-width: 600px;
    border-radius: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

.w-full {
    width: 100%;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: left;
}

.detail-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-grid {
    text-align: center;
    margin-bottom: 2rem;
}

/* Footer Links */
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.no-results {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.nav-item {
    cursor: pointer;
    transition: 0.3s;
}

.nav-item.active {
    color: white !important;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-container {
        flex-direction: column;
        border-radius: 24px;
        padding: 1.5rem;
    }

    .search-input {
        width: 100%;
        border-radius: 12px;
    }

    .btn-search {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 2vh auto;
        padding: 2rem;
    }

    .job-meta {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================= */
/* CONTENT HUB STYLES - TravelTherapistJobs.com  */
/* ============================================= */

/* ── Navigation Enhancement ── */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); min-width: 220px;
  background: rgba(15, 15, 20, 0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 8px 0; margin-top: 8px; z-index: 1000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown .dropdown-menu a {
  display: block; padding: 10px 20px; color: #d1d5db;
  text-decoration: none; font-size: 0.9rem; transition: all 0.2s; white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover {
  color: #fff; background: rgba(99, 102, 241, 0.15); padding-left: 24px;
}

/* ── Hero Enhancement ── */
.hero-badge {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a78bfa; margin-bottom: 20px; text-transform: uppercase;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem;
}
.btn-secondary {
  background: transparent; border: 2px solid rgba(255,255,255,0.3);
  color: #fff; padding: 0.8rem 2rem; border-radius: 50px;
  font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ── Stats Strip ── */
.stats-strip {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  padding: 28px 0;
}
.stats-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.stat-item { text-align: center; }
.stat-number {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.3), transparent); }

/* ── Section Styles ── */
.section-badge {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a78bfa; margin-bottom: 20px; text-transform: uppercase;
}
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.section-subtitle { color: #9ca3af; font-size: 1.1rem; max-width: 600px; margin: 0 auto 48px; }

/* ── Tools Grid ── */
.tools-section { padding: 80px 0; text-align: center; }
.tools-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.tool-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 24px; text-decoration: none; color: inherit;
  transition: all 0.3s ease; text-align: left;
}
.tool-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
}
.tool-icon { font-size: 2rem; margin-bottom: 16px; }
.tool-card h3 { font-size: 1.15rem; font-weight: 700; color: #f3f4f6; margin-bottom: 8px; }
.tool-card p { color: #9ca3af; font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* ── Guides Grid ── */
.guides-section { padding: 80px 0; }
.guides-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.guide-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px; text-decoration: none; color: inherit;
  transition: all 0.3s; display: flex; gap: 20px; align-items: flex-start;
}
.guide-card:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(99,102,241,0.3);
  transform: translateY(-3px);
}
.guide-icon { font-size: 2.5rem; flex-shrink: 0; }
.guide-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.guide-card p { color: #9ca3af; font-size: 0.9rem; line-height: 1.5; margin: 0; }
.guide-card .read-more { color: #a78bfa; font-size: 0.85rem; font-weight: 600; margin-top: 8px; display: inline-block; }

/* ── Blog Preview ── */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.blog-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.3); }
.blog-card-body { padding: 24px; }
.blog-card .tag {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  background: rgba(99,102,241,0.15); color: #a78bfa; margin-bottom: 12px; text-transform: uppercase;
}
.blog-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { color: #9ca3af; font-size: 0.85rem; line-height: 1.6; }
.blog-card .read-time { color: #6b7280; font-size: 0.75rem; margin-top: 12px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(99,102,241,0.2); border-radius: 24px;
  padding: 60px 40px; text-align: center; margin: 40px auto; max-width: 900px;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: #9ca3af; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Blog Article Page ── */
.article-page { padding: 120px 0 60px; max-width: 800px; margin: 0 auto; }
.article-page .breadcrumb { color: #6b7280; font-size: 0.85rem; margin-bottom: 24px; }
.article-page .breadcrumb a { color: #a78bfa; text-decoration: none; }
.article-page h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.article-page .meta { color: #6b7280; font-size: 0.9rem; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.article-page .content { line-height: 1.8; color: #d1d5db; }
.article-page .content h2 { font-size: 1.6rem; font-weight: 700; color: #f3f4f6; margin: 40px 0 16px; }
.article-page .content h3 { font-size: 1.3rem; font-weight: 600; color: #f3f4f6; margin: 32px 0 12px; }
.article-page .content p { margin-bottom: 16px; }
.article-page .content ul, .article-page .content ol { margin: 16px 0; padding-left: 24px; }
.article-page .content li { margin-bottom: 8px; }
.article-page .content blockquote {
  border-left: 3px solid #6366f1; padding: 16px 24px; margin: 24px 0;
  background: rgba(99,102,241,0.08); border-radius: 0 12px 12px 0; font-style: italic;
}
.article-page .content a { color: #a78bfa; text-decoration: underline; }
.article-page .content .callout {
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px; padding: 24px; margin: 24px 0;
}
.article-page .content .callout h4 { color: #a78bfa; margin-bottom: 8px; }
.article-page .content table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
}
.article-page .content th, .article-page .content td {
  padding: 12px 16px; border: 1px solid rgba(255,255,255,0.1); text-align: left;
}
.article-page .content th { background: rgba(99,102,241,0.1); font-weight: 600; }

/* ── Sidebar CTA ── */
.sidebar-cta {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
  border: 1px solid rgba(99,102,241,0.2); border-radius: 16px;
  padding: 24px; margin: 32px 0; text-align: center;
}
.sidebar-cta h4 { font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-cta p { color: #9ca3af; font-size: 0.85rem; margin-bottom: 16px; }

/* ── Blog Index Page ── */
.blog-index { padding: 120px 0 60px; }
.blog-index h1 { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 12px; }
.blog-index .subtitle { color: #9ca3af; text-align: center; margin-bottom: 48px; }
.blog-index .blog-grid { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
.blog-featured {
  grid-column: 1 / -1; display: flex; gap: 32px; align-items: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px; margin-bottom: 24px;
}

/* ── FAQ Section ── */
.faq-section { padding: 60px 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 0; cursor: pointer;
}
.faq-item h3 {
  font-size: 1.1rem; font-weight: 600; display: flex;
  justify-content: space-between; align-items: center;
}
.faq-item h3::after { content: '+'; font-size: 1.5rem; color: #6366f1; transition: transform 0.3s; }
.faq-item.open h3::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s;
  color: #9ca3af; line-height: 1.7; padding-right: 2rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding-top: 12px; }

/* ── Footer Enhancement ── */
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; text-align: left; margin-bottom: 40px;
}
.footer-grid h4 { font-size: 0.9rem; font-weight: 700; color: #f3f4f6; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid a { display: block; color: #9ca3af; text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-grid a:hover { color: #a78bfa; }
.footer-brand p { color: #6b7280; font-size: 0.85rem; line-height: 1.6; margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.8rem; color: #6b7280; }

/* ── Testimonials ── */
.testimonials-section { padding: 60px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
}
.testimonial-stars { color: #fbbf24; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-quote { color: #d1d5db; font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.85rem; }
.testimonial-role { color: #6b7280; font-size: 0.8rem; }

/* ── VIP Alerts Enhancement ── */
.vip-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(168,85,247,0.08));
  border: 1px solid rgba(99,102,241,0.2); border-radius: 24px;
  padding: 48px; margin: 0 auto; max-width: 1000px;
}

/* ── Mobile Responsive Enhancements ── */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
  .glass-nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10,10,12,0.98); }
  .glass-nav .container { padding: 0 12px; }
  section, main, footer { max-width: 100vw; overflow-x: hidden; box-sizing: border-box; }
  
  .tools-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .stats-items { gap: 20px; }
  .stat-divider { display: none; }
  .section-title { font-size: 1.8rem; }
  .article-page { padding: 100px 1rem 40px; }
  .article-page h1 { font-size: 1.8rem; }
  .cta-banner { padding: 40px 20px; margin: 20px 16px; }
  .vip-section { padding: 32px 20px; margin: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
  .blog-index .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { flex-direction: column; }
  
  .nav-dropdown .dropdown-menu {
    position: static; transform: none; background: transparent;
    border: none; border-radius: 0; margin-top: 0; box-shadow: none;
    display: none !important; padding: 0 0 0 1rem;
  }
  .nav-dropdown .dropdown-menu.show { display: block !important; }
  .nav-dropdown .dropdown-menu a { padding: 8px 0; font-size: 0.95rem; color: #9ca3af; }
  .nav-dropdown .dropdown-menu a:hover { padding-left: 0; background: transparent; color: #fff; }
  .nav-dropdown:hover .dropdown-menu { display: none !important; }
  .nav-dropdown:hover .dropdown-menu.show { display: block !important; }
  .nav-dropdown.open .nav-item svg { transform: rotate(180deg); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== NAV CONTAINER FIX ===== */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== DROPDOWN CONTENT (alias for dropdown-menu) ===== */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 8px;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.dropdown-content a:hover {
  background: rgba(99, 102, 241, 0.15);
  color: #a78bfa;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-dropdown-btn:hover { color: #fff; }

/* ===== NAV LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 40px; }

/* ===== NAV CTA BUTTON ===== */
.nav-cta {
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  color: #fff !important;
}

/* ===== HERO MINI (for sub-pages) ===== */
.hero-mini {
  padding: 120px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(168,85,247,0.05) 100%);
}
.hero-mini h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-mini .hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ===== ARTICLE CONTENT ===== */
.article-header { margin-bottom: 2rem; }
.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #d1d5db;
}
.article-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content p {
  margin-bottom: 1.25rem;
}
.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(99,102,241,0.3);
  text-underline-offset: 3px;
}
.article-content a:hover { text-decoration-color: var(--primary); }
.article-intro {
  font-size: 1.15rem;
  color: #e5e7eb;
  line-height: 1.9;
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #d1d5db;
}
.article-content li { margin-bottom: 0.5rem; }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.info-box h4 {
  color: #a78bfa;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* ===== CTA BOX (in-article) ===== */
.cta-box {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.cta-box h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ===== BLOG INDEX ===== */
.blog-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}
.blog-filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
}
.blog-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-2px);
}
.blog-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.05));
  border-color: rgba(99,102,241,0.2);
}
.blog-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card-category {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.5rem;
}
.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card h2 a {
  color: #fff;
  text-decoration: none;
}
.blog-card h2 a:hover { color: var(--primary); }
.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card-meta {
  color: #6b7280;
  font-size: 0.85rem;
}
.blog-cta-box {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.blog-cta-box h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.blog-cta-box p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.blog-subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.blog-subscribe-form input[type="email"] {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
}
.blog-subscribe-form button {
  white-space: nowrap;
}

/* ===== MATCH PAGE ===== */
.match-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
.match-form-card {
  padding: 2rem;
}
.match-form-card h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.match-form-card > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.match-form .form-group {
  margin-bottom: 1rem;
}
.match-form label {
  display: block;
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.match-form input,
.match-form select,
.match-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}
.match-form input:focus,
.match-form select:focus,
.match-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.match-form select option { background: #1a1a2e; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  accent-color: var(--primary);
}
.btn-large {
  padding: 14px 28px !important;
  font-size: 1.1rem !important;
}
.btn-full { width: 100%; }
.form-disclaimer {
  text-align: center;
  color: #6b7280;
  font-size: 0.8rem;
  margin-top: 0.75rem;
}
.match-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-card {
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.benefit-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}
.step-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SECTION ALT ===== */
.section-alt {
  background: rgba(255,255,255,0.02);
}
.section-title {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: rgba(10,10,12,0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #6b7280;
  font-size: 0.85rem;
}

/* ===== MOBILE FIXES FOR NEW PAGES ===== */
@media (max-width: 768px) {
  .nav-container { padding: 0 1rem; }
  
  .glass-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10,10,12,0.98);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10,10,12,0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  
  .hamburger { display: flex; z-index: 1001; }
  
  .nav-dropdown .dropdown-content {
    position: static;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: none;
    backdrop-filter: none;
  }
  .nav-dropdown.open .dropdown-content { display: block; }
  
  .hero-mini { padding: 100px 1rem 30px; }
  .hero-mini h1 { font-size: 1.8rem; }
  
  .article-content { font-size: 1rem; padding: 0 0.5rem; }
  
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  
  .match-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .blog-subscribe-form { flex-direction: column; }
}

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


/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 4rem 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 1.75rem;
  border-radius: 16px;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { color: #fff; font-size: 0.95rem; }
.testimonial-role { color: #6b7280; font-size: 0.8rem; }

/* ===== SPECIALTY LANDING ===== */
.specialty-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(168,85,247,0.06) 100%);
  text-align: center;
}
.specialty-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
.specialty-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}
.specialty-stat { text-align: center; }
.specialty-stat .stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.specialty-stat .stat-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; }
.specialty-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.specialty-job-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.specialty-job-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-2px);
}

/* ===== PAY TRANSPARENCY BOARD ===== */
.pay-board-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.pay-board-table th {
  background: rgba(99,102,241,0.15);
  color: #a78bfa;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(99,102,241,0.3);
}
.pay-board-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #d1d5db;
  font-size: 0.95rem;
}
.pay-board-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.pay-board-table .pay-amount {
  color: var(--accent);
  font-weight: 700;
}
.pay-submit-form {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

/* ===== EMAIL GATE / DOWNLOAD CTA ===== */
.download-gate {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(99,102,241,0.1));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}
.download-gate h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.download-gate p { color: var(--text-muted); margin-bottom: 1.5rem; }
.download-gate-form {
  display: flex;
  gap: 0.5rem;
  max-width: 450px;
  margin: 0 auto;
}
.download-gate-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
}
.download-gate .btn-accent {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(168,85,247,0.04));
  border-top: 1px solid rgba(99,102,241,0.15);
  border-bottom: 1px solid rgba(99,102,241,0.15);
  padding: 3rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .specialty-stats { flex-direction: column; gap: 1rem; }
  .specialty-hero h1 { font-size: 2rem; }
  .specialty-jobs-grid { grid-template-columns: 1fr; }
  .download-gate-form { flex-direction: column; }
}

@media(max-width:600px){.states-stats-bar{grid-template-columns:1fr 1fr !important}.packing-grid{grid-template-columns:1fr !important}.pros-cons-mini{grid-template-columns:1fr !important}}