/* --- Variables --- */
:root {
    --color-bg: #121212;        /* Business Dark */
    --color-panel: #1e1e1e;
    --color-green: #00e676;     /* Growth Green */
    --color-green-dark: #00c853;
    --color-white: #ffffff;
    --color-text: #e0e0e0;
    --color-grey: #b0b0b0;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --radius: 6px;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* --- Header --- */
.pro-header { background-color: rgba(30, 30, 30, 0.95); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--color-white); letter-spacing: -1px; }
.green-text { color: var(--color-green); }
.dot { color: var(--color-green); }

.net-nav ul { display: flex; gap: 25px; align-items: center; }
.net-nav a { font-weight: 600; color: var(--color-grey); font-size: 0.9rem; }
.net-nav a:hover, .net-nav a.active { color: var(--color-white); }

.btn-green { background-color: var(--color-green); color: #000 !important; padding: 8px 20px; border-radius: var(--radius); font-weight: bold; }
.btn-green:hover { background-color: var(--color-white); }
.btn-green-outline { border: 1px solid var(--color-green); color: var(--color-green) !important; padding: 7px 20px; border-radius: var(--radius); font-weight: bold; }
.btn-green-outline:hover { background-color: var(--color-green); color: #000 !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--color-white); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-panel); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    transition: 0.3s ease; border-left: 2px solid var(--color-green);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-green); background: none; border: none; cursor: pointer; }
.mobile-menu a { color: var(--color-white); font-weight: 600; border-bottom: 1px solid #333; padding-bottom: 10px; }

/* --- Hero --- */
.hero-pro {
    position: relative; height: 500px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 18, 18, 0.85); z-index: 1; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 800px; padding: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; color: var(--color-white); line-height: 1.1; margin-bottom: 20px; }
.hero-content p { color: var(--color-grey); font-size: 1.2rem; margin-bottom: 40px; }

.job-search-bar { background-color: var(--color-panel); padding: 10px; border-radius: var(--radius); display: flex; gap: 10px; border: 1px solid #333; }
.input-wrap { flex: 1; display: flex; align-items: center; background: #2a2a2a; border-radius: var(--radius); padding: 0 15px; }
.input-wrap input { width: 100%; background: transparent; border: none; padding: 15px 10px; color: #fff; font-size: 1rem; outline: none; }
.job-search-bar button { background-color: var(--color-green); color: #000; border: none; padding: 0 30px; font-weight: bold; border-radius: var(--radius); cursor: pointer; font-family: var(--font-head); }
.job-search-bar button:hover { background-color: var(--color-white); }

.trending-tags { margin-top: 20px; font-size: 0.9rem; color: var(--color-grey); }
.trending-tags a { color: var(--color-green); margin-left: 10px; }

/* --- Job Listings --- */
.section-padding { padding: 80px 0; }
.section-head { margin-bottom: 50px; }
.section-head h2 { font-family: var(--font-head); font-size: 2rem; color: var(--color-white); margin-bottom: 15px; }
.line-green { width: 60px; height: 4px; background-color: var(--color-green); border-radius: 2px; }

.job-list { display: flex; flex-direction: column; gap: 20px; }
.job-card { display: flex; align-items: center; background-color: var(--color-panel); padding: 25px; border-radius: var(--radius); border: 1px solid #333; transition: 0.3s; }
.job-card:hover { border-color: var(--color-green); transform: translateX(5px); background-color: #252525; }

.job-logo img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; margin-right: 20px; }
.job-info { flex: 1; }
.job-info h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--color-white); margin-bottom: 5px; }
.company { color: var(--color-grey); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.job-tags span { background: #333; color: var(--color-green); padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; margin-right: 5px; font-weight: 600; }

.job-action { text-align: right; }
.time { display: block; font-size: 0.8rem; color: #666; margin-bottom: 10px; }
.btn-apply { background: transparent; border: 1px solid var(--color-white); color: var(--color-white); padding: 8px 20px; border-radius: var(--radius); cursor: pointer; transition: 0.3s; }
.job-card:hover .btn-apply { background-color: var(--color-green); border-color: var(--color-green); color: #000; font-weight: bold; }

.center-btn { text-align: center; margin-top: 40px; }
.btn-text-green { color: var(--color-green); font-weight: bold; font-size: 1.1rem; }

/* --- Promo --- */
.talent-promo { background-color: var(--color-green); color: #000; padding: 60px 0; margin-top: 50px; }
.promo-flex { display: flex; align-items: center; justify-content: space-between; }
.promo-text h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.btn-white { background: #000; color: #fff; padding: 12px 30px; border-radius: var(--radius); font-weight: bold; display: inline-block; margin-top: 20px; }
.promo-stats { display: flex; gap: 40px; }
.stat-box strong { display: block; font-size: 2rem; font-family: var(--font-head); }
.stat-box span { font-size: 0.9rem; font-weight: 600; }

/* --- Experts (About) --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-family: var(--font-head); font-size: 3rem; color: var(--color-white); }

.expert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.expert-card { background-color: var(--color-panel); border-radius: var(--radius); overflow: hidden; border: 1px solid #333; text-align: center; }
.e-img { height: 150px; background-size: cover; background-position: center; }
.e-info { padding: 30px 20px; margin-top: -40px; }
.e-info h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--color-white); margin-bottom: 5px; background: var(--color-panel); display: inline-block; padding: 5px 10px; border-radius: 4px; }
.e-info .title { display: block; color: var(--color-green); font-size: 0.9rem; margin-bottom: 15px; }
.e-info p { color: var(--color-grey); font-size: 0.9rem; margin-bottom: 20px; }
.btn-connect { background: #333; color: var(--color-white); border: 1px solid #444; padding: 8px 20px; border-radius: 20px; cursor: pointer; transition: 0.3s; }
.btn-connect:hover { border-color: var(--color-green); color: var(--color-green); }

.events-section h2 { color: var(--color-white); margin-bottom: 30px; }
.event-row { display: flex; align-items: center; background: var(--color-panel); padding: 20px; border-radius: var(--radius); margin-bottom: 20px; border-left: 4px solid var(--color-green); }
.date-box { background: #000; padding: 10px; text-align: center; border-radius: 4px; margin-right: 20px; min-width: 60px; }
.date-box .day { display: block; font-size: 1.5rem; font-weight: bold; color: var(--color-white); line-height: 1; }
.date-box .month { font-size: 0.8rem; color: var(--color-green); font-weight: bold; }
.event-details { flex: 1; }
.event-details h4 { color: var(--color-white); font-size: 1.2rem; }
.btn-event { color: var(--color-green); font-weight: bold; }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.blog-card { background: var(--color-panel); padding: 30px; border-radius: var(--radius); border: 1px solid #333; transition: 0.3s; }
.blog-card:hover { border-color: var(--color-green); }
.blog-card.featured { border-color: var(--color-green); background: #1a2e22; }
.b-cat { font-size: 0.7rem; font-weight: bold; color: var(--color-green); letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 15px; color: var(--color-white); }
.read-more { font-weight: bold; color: var(--color-white); font-size: 0.9rem; }

.success-stories { background: var(--color-panel); padding: 40px; border-radius: var(--radius); text-align: center; border: 1px solid #333; }
.story p { font-size: 1.2rem; font-style: italic; color: var(--color-white); margin-bottom: 20px; }
.story span { color: var(--color-green); font-weight: bold; }

/* --- Auth (Contact) --- */
.auth-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.auth-box { background: var(--color-panel); padding: 40px; border-radius: var(--radius); border: 1px solid #333; }
.auth-tabs { display: flex; margin-bottom: 30px; border-bottom: 1px solid #333; }
.tab { flex: 1; background: none; border: none; color: var(--color-grey); padding: 15px; font-weight: bold; cursor: pointer; }
.tab.active { color: var(--color-green); border-bottom: 2px solid var(--color-green); }

.pro-form h3 { color: var(--color-white); margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; color: var(--color-grey); font-size: 0.9rem; }
.form-group input { width: 100%; padding: 12px; background: #121212; border: 1px solid #333; color: #fff; border-radius: var(--radius); }
.form-group input:focus { border-color: var(--color-green); outline: none; }

.form-actions { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 20px; color: var(--color-grey); }
.forgot-pw { color: var(--color-white); }
.btn-full-green { width: 100%; background: var(--color-green); color: #000; padding: 12px; border: none; font-weight: bold; border-radius: var(--radius); cursor: pointer; }
.divider { text-align: center; margin: 20px 0; color: #666; font-size: 0.8rem; }
.btn-linkedin { width: 100%; background: #0077b5; color: #fff; padding: 12px; border: none; font-weight: bold; border-radius: var(--radius); cursor: pointer; }

.employer-cta { padding-left: 30px; border-left: 1px solid #333; }
.employer-cta h2 { font-family: var(--font-head); color: var(--color-white); margin-bottom: 15px; }
.employer-cta ul { margin: 20px 0; color: var(--color-grey); }
.employer-cta li { margin-bottom: 10px; }
.btn-white-border { border: 1px solid var(--color-white); color: var(--color-white); padding: 10px 25px; border-radius: var(--radius); font-weight: bold; }

/* --- Legal --- */
.legal-content { max-width: 800px; margin: 0 auto; color: var(--color-grey); }
.legal-content h1 { color: var(--color-white); margin-bottom: 20px; }
.legal-content h3 { color: var(--color-green); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.pro-footer { border-top: 1px solid #333; padding: 50px 0; margin-top: auto; text-align: center; }
.f-brand h4 { color: var(--color-white); font-family: var(--font-head); font-weight: 800; margin-bottom: 5px; }
.f-links a { color: var(--color-grey); margin: 0 15px; }
.f-links a:hover { color: var(--color-green); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #555; }

@media (max-width: 992px) {
    .net-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .job-search-bar { flex-direction: column; }
    .job-card { flex-direction: column; text-align: center; gap: 15px; }
    .job-action { text-align: center; }
    .promo-flex, .auth-wrapper, .expert-grid, .blog-grid { flex-direction: column; grid-template-columns: 1fr; gap: 40px; }
    .employer-cta { border-left: none; padding-left: 0; border-top: 1px solid #333; padding-top: 30px; }
}