/* TechnoWrite Website - Redesign v2 */
/* Based on One-Pager design */

:root {
    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Colors - Dark Mode (Default) */
    --bg-primary: #0a0f1e;
    --bg-secondary: #0f172a;
    --bg-glass: rgba(30, 41, 59, 0.7);
    --bg-glass-strong: rgba(30, 41, 59, 0.9);

    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;

    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-cyan: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #60a5fa, #3b82f6);
    --bg-gradient: linear-gradient(135deg, #0a0f1e 0%, #1a2847 50%, #0a0f1e 100%);

    --border-color: rgba(59, 130, 246, 0.3);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
}

[data-theme="light"] {
    /* Colors - Light Mode */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-glass-strong: rgba(255, 255, 255, 0.95);

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #475569;

    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-cyan: #0891b2;
    --accent-gradient: linear-gradient(135deg, #2563eb, #0891b2);
    --bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);

    --border-color: #cbd5e1;
    --shadow-glow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    font-family: var(--font-main);
    background: var(--bg-primary);
    /* Fallback */
    background: var(--bg-gradient) fixed;
    color: var(--text-main);
    line-height: 1.5;
    transition: color 0.3s ease, background 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px;
    /* Pill shape */
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
}

/* Small Button for Cards */
.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-small:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Logo - MAX PROMINENCE */
.nav-logo {
    height: 90px;
    width: auto;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo img {
    height: 100%;
    width: auto;
    /* Default Dark Mode: Logo is White (assuming SVG is white) */
    filter: none;
    transition: filter 0.3s ease;
}

[data-theme="light"] .nav-logo img {
    /* Light Mode: Invert White Logo to Black */
    filter: invert(1);
}

.navbar.scrolled .nav-logo {
    height: 50px;
}

/* Discreet Cookie Bar (Small, Non-Intrusive) */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
    z-index: 2000;
    display: none;
    /* Managed by JS */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

.cookie-bar.active {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 13px;
    color: var(--text-light);
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Compact Buttons for Cookie Bar */
.cookie-btn-sm {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-gradient);
    color: white;
}

.cookie-btn-deny {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.cookie-btn-settings {
    text-decoration: underline;
    background: none;
    color: var(--text-muted);
    font-size: 12px;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Modal for Settings (Only if clicked) */
.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    z-index: 2001;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-modal.active {
    display: block;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
}

.cookie-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-btn-sm {
        flex: 1;
        text-align: center;
    }

    .nav-logo {
        height: 50px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 5px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.theme-toggle:hover {
    color: var(--accent-blue-light);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p.lead {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin: 40px auto 0;
    max-width: 900px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Services */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    /* Slightly thinner for more pro look */
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-list {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.service-list li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--accent-cyan);
    background: rgba(6, 182, 212, 0.05);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-cyan);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-family: var(--font-mono);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin: 20px 0 10px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-main);
}

/* Contact */
.contact-section {
    background: var(--bg-glass);
    border-radius: 24px;
    padding: 60px;
    margin-top: 80px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-main);
    transition: all 0.2s;
}

/* Projects Section Styles (Added FIX) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-blue);
}

.project-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    display: inline-block;
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.project-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Impressum & Legal Pages Fix */
.legal-content {
    padding-top: 150px;
    /* Clear fixed header */
    padding-bottom: 80px;
    min-height: 80vh;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    color: var(--text-main);
    margin-bottom: 20px;
}

.legal-content p,
.legal-content ul {
    color: var(--text-light);
    /* Ensure visibility in Dark Mode */
    line-height: 1.7;
    margin-bottom: 15px;
}


.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    height: 30px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-blue-light);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }


    /* Cookie Banner */
    .cookie-banner-advanced {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 2000;
        max-width: 400px;
        width: calc(100% - 40px);
        background: var(--bg-glass-strong);
        backdrop-filter: blur(15px);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        padding: 24px;
        display: none;
        animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cookie-banner-advanced.active {
        display: block;
    }

    .cookie-banner-header h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--text-main);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-banner-header p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .cookie-options {
        display: none;
        margin-bottom: 20px;
        max-height: 200px;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
    }

    .cookie-options.show {
        display: block;
    }

    .cookie-option {
        margin-bottom: 12px;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--text-main);
        cursor: pointer;
    }

    .cookie-option-desc {
        font-size: 12px;
        color: var(--text-muted);
        margin-left: 24px;
        margin-top: 4px;
    }

    .cookie-banner-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-btn {
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        transition: all 0.2s;
        flex: 1;
    }

    .cookie-btn-primary {
        background: var(--accent-blue);
        color: white;
        flex: 100%;
        padding: 12px;
        font-weight: 600;
    }

    .cookie-btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-main);
        border: 1px solid var(--border-color);
    }

    .cookie-btn-tertiary {
        background: transparent;
        color: var(--text-muted);
        text-decoration: underline;
        padding: 8px 0;
    }

    .cookie-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

}

/* Chatbot Positioning Fix (Override) */
.chatbot-trigger {
    bottom: 90px !important;
    /* Move up to avoid covering contact button */
    right: 20px !important;
}

@media (max-width: 768px) {
    .chatbot-trigger {
        bottom: 100px !important;
        /* Higher on mobile to clear fixed bottom navs or buttons */
    }

    .chatbot-window {
        bottom: 170px !important;
        /* Adjust window position too */
    }
}

/* Bewerbungsformular Styles (Migrated) */
.bewerbung-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 50px;
}

.bewerbung-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--bg-glass);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    border: 1px solid var(--border-color);
}

.info-box h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-main);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95em;
}

.info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.5em;
}

.info-box.info-warning {
    border-left-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.info-box.info-success {
    border-left-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.bewerbung-form {
    background: var(--bg-glass);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.bewerbung-form h3 {
    color: var(--text-main);
    font-size: 1.5em;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-blue);
}

.bewerbung-form h3:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.file-info {
    display: block;
    margin-top: 5px;
    font-size: 0.85em;
    color: var(--text-muted);
}

.file-size-warning {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .bewerbung-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Professional Job Cards */
.job-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-card-pro {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}



.legal-page,
.legal-content {
    margin-top: 160px;
    margin-bottom: 80px;
}

.job-card-pro:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.job-card-pro:hover::before {
    opacity: 1;
}

.job-header-pro {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.job-icon-pro {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.job-title-group h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
}

.tag.accent {
    color: var(--accent-cyan);
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.05);
}

.job-footer-pro {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.job-exp {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.learn-more-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.job-card-pro:hover .learn-more-text {
    gap: 8px;
}

/* Slider Captcha */
.slider-captcha-container {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    user-select: none;
}

.slider-track {
    height: 44px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-text {
    font-size: 14px;
    color: var(--text-muted);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}

.slider-handle {
    width: 60px;
    height: 38px;
    background: var(--accent-gradient);
    border-radius: 19px;
    position: absolute;
    left: 3px;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
    transition: box-shadow 0.2s, left 0.1s;
    z-index: 2;
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-track.unlocked {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
}

.slider-track.unlocked .slider-text {
    color: #10b981;
    font-weight: 700;
}

/* Form Validation */
.form-control.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-control.invalid+.error-message {
    display: block;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

/* Mobile Responsiveness for Contact & Grid Couch Couch Couch Couch Couch Couch🛋️🛡️🚀 */
@media (max-width: 768px) {
    .contact-section>div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .nav-logo {
        height: 60px;
    }

    .navbar {
        padding: 10px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    /* Ensure containers dont overflow */
    .container {
        padding: 0 15px;
    }

    /* Slider Mobile Fix */
    .slider-captcha-container {
        max-width: 100%;
    }

    /* iOS Auto-Zoom Prevention & Chatbot Polish Couch Couch Couch Couch Couch Couch🛋️🛡️🚀 */
    input,
    select,
    textarea,
    .chat-input {
        font-size: 16px !important;
    }

    .chatbot {
        width: 100% !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        height: 100% !important;
        max-height: none !important;
    }

    .chatbot.active {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-glass-strong);
        backdrop-filter: blur(20px);
        padding: 30px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        text-align: center;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block !important;
        z-index: 1002;
    }
}