:root {
    /* Light Mode (Default) */
    --bg-main: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --text-main: #1A1A1A;
    --text-secondary: #666666;
    --accent-red: #E60000;
    --accent-red-glow: rgba(230, 0, 0, 0.2);
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --hero-gradient: radial-gradient(circle at 70% 50%, #f0f0f0 0%, #ffffff 70%);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.dark-mode {
    /* Dark Mode Overrides */
    --bg-main: #000000;
    --bg-main-rgb: 0, 0, 0;
    --bg-secondary: #0a0a0a;
    --text-main: #FFFFFF;
    --text-secondary: #B0B0B0;
    --accent-red-glow: rgba(230, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(0, 0, 0, 0.8);
    --hero-gradient: radial-gradient(circle at 70% 50%, #1a0000 0%, #000000 70%);
    --shadow-card: none;
}

:root {
    --bg-main-rgb: 255, 255, 255;
}

/* Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body.no-scroll {
    overflow: hidden !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
}

.text-red {
    color: var(--accent-red);
}

.text-gradient {
    background: linear-gradient(90deg, var(--text-main), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    border-color: var(--text-main);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-main);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: clamp(15px, 2vw, 40px);
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: var(--text-secondary);
}

.nav-links a:not(.btn):hover {
    color: var(--text-main);
}

@media (max-width: 1400px) {
    .nav-links {
        gap: clamp(10px, 1.5vw, 20px);
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a:not(.btn) {
        font-size: 0.9rem;
    }
}

.mobile-menu-btn {
    display: none;
}

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 10px;
}

.theme-toggle:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
    transform: rotate(15deg);
}

.theme-icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--hero-gradient);
    overflow: hidden;
    padding-top: 80px;
    transition: background 0.3s ease;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    flex: 0 0 50%;
    z-index: 2;
    padding-right: clamp(10px, 4vw, 40px);
}

.subheadline {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    gap: clamp(20px, 5vw, 60px);
    margin-bottom: 3rem;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-group {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-main);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: var(--text-main);
}

.problem-card p {
    color: var(--text-secondary);
}

.solution-statement {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    color: var(--accent-red);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-red);
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "•";
    color: var(--accent-red);
    position: absolute;
    left: 0;
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.usp-item {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-card);
}

.usp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.usp-item h4 {
    color: var(--text-main);
}

.usp-item p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-red);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0 5px;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.ad-spend {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    font-style: italic;
    box-shadow: var(--shadow-card);
}

.quote {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.author h4 {
    margin-bottom: 0;
    color: var(--text-main);
}

.author p {
    font-size: 0.9rem;
    color: var(--accent-red);
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--glass-border);
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step h3 {
    position: relative;
    z-index: 1;
    color: var(--text-main);
}

.step p {
    color: var(--text-secondary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-main);
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Contact */
.contact-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: var(--text-main);
}

.contact-text p {
    color: var(--text-secondary);
}

.contact-form-wrapper {
    flex: 1;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 16px;
    /* Prevents auto-zoom on iOS */
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.trust-badges {
    margin-top: 30px;
}

.trust-badges li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-col p {
    color: var(--text-secondary);
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.footer-col a:hover {
    color: var(--accent-red);
}

.footer-seo-links {
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
}

.seo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.seo-row a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.seo-row a:hover {
    color: var(--accent-red);
}

.footer-backlinks {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-backlinks h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.backlink-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.backlink-grid a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: 2000;
    display: none;
    /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(40px, 6vh, 80px) 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 2.5vh, 25px);
    width: 100%;
    max-width: 400px;
}

.mobile-link {
    font-size: clamp(1.2rem, 3.5vh, 1.8rem);
    font-weight: 700;
    color: var(--text-main) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 15px);
    width: 100%;
    margin-top: 20px;
}

.mobile-action-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .hero-content {
        flex: 0 0 100%;
        text-align: center;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-section {
        height: auto;
        padding-top: 180px !important;
        padding-bottom: 120px !important;
    }

    .scroll-indicator,
    .mouse,
    .wheel {
        display: none !important;
    }

    .stats-row {
        justify-content: center;
        gap: 20px;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .problem-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .process-steps,
    .usp-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2501;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-main);
        transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Mobile Menu - Keep navbar visible */
.mobile-menu-overlay.active~.navbar,
.navbar {
    z-index: 2500 !important;
}

.mobile-menu-overlay.active {
    padding-top: 80px;
    /* Space for navbar */
}

/* Ensure hamburger X is visible when menu is open */
.mobile-menu-btn {
    background: var(--bg-main);
    padding: 8px;
    border-radius: 4px;
}

.mobile-menu-btn.active {
    background: var(--bg-main);
    z-index: 2501 !important;
}




.mobile-menu-overlay.active .mobile-link:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-action-btn:nth-child(1) {
    animation-delay: 0.5s;
}

.mobile-menu-overlay.active .mobile-action-btn:nth-child(2) {
    animation-delay: 0.6s;
}

.mobile-menu-overlay.active .mobile-action-btn:nth-child(3) {
    animation-delay: 0.7s;
}


/* Mobile Menu - Light/Dark Mode Optimization */
body:not(.dark-mode) .mobile-menu-overlay {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

body:not(.dark-mode) .mobile-link {
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body:not(.dark-mode) .mobile-actions {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.98);
}

body.dark-mode .mobile-link {
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .mobile-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Career Page Specific Styles */
.career-hero {
    padding-top: 200px;
    padding-bottom: 80px;
    background: var(--hero-gradient);
}

.job-section {
    padding: 60px 0 100px;
}

.job-header {
    margin-bottom: 40px;
}

.job-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin: 15px 0;
}

.job-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.job-meta .badge {
    position: static;
    transform: none;
    display: inline-block;
}

.job-meta span:not(.badge) {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: var(--glass-bg);
    padding: 5px 12px;
    border-radius: 20px;
}

.salary {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-red);
}

.job-content {
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 1.5rem;
    color: var(--text-main);
    border-left: 4px solid var(--accent-red);
    padding-left: 20px;
}

.content-block p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.content-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.content-block ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 800;
}

.apply-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.apply-section h3 {
    font-size: 2rem;
}

.apply-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.active {
    color: var(--accent-red) !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .job-content {
        padding: 30px 20px;
    }

    .job-header h2 {
        font-size: 1.8rem;
    }

    .content-block h3 {
        font-size: 1.5rem;
    }

    .mobile-container {
        padding: 0 10px;
    }
}

/* --- Job Page Enhancements (Matching Image Layout) --- */
.job-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

.job-main-column {
    background: var(--bg-main);
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

body.dark-mode .sidebar-widget {
    background: #111111;
    border-color: #222222;
}

.sidebar-widget h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 0;
    font-weight: 600;
}

.contact-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.widget-form input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 0.9rem;
}

.job-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.job-pill {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.share-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(255, 0, 0, 0.05);
}

@media (max-width: 1100px) {
    .job-grid {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        order: -1;
        /* Keep CTA visible if it's important, but image shows it above/beside */
    }
}