/* Project: GreenField Job Agency
    Style: Modern-Professional (LOCKED)
    Palette: Forest & Sage
*/

/* Color Palette & Variables */
:root {
    --primary: #1B4332;      /* Forest Green */
    --accent: #74C69D;       /* Sage Green */
    --dark: #2D3436;         /* Slate Dark */
    --light: #F8F9FA;        /* Off-White */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Global Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--dark); 
    background: var(--white); 
    line-height: 1.6; 
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* Navigation */
.navbar { 
    padding: 1.2rem 0; 
    background: rgba(255,255,255,0.98); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #eee; 
}

.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 1.6rem; 
    font-weight: 800; 
    color: var(--primary); 
    text-decoration: none; 
}

.logo span { 
    color: var(--accent); 
}

.logo small{ 
    font-size: 1rem; 
    font-weight: 500; 
    color: var(--primary); 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 2.5rem; 
    align-items: center; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 600; 
    transition: 0.3s; 
}

.nav-links a:hover { 
    color: var(--accent); 
}

.btn-nav { 
    background: var(--primary); 
    color: white !important; 
    padding: 0.7rem 1.4rem; 
    border-radius: 8px; 
}

/* Hero Section */
.hero { 
    padding: 140px 0; 
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200') center/cover; 
}

.hero h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    color: var(--primary); 
    font-weight: 800; 
}

.highlight { 
    color: var(--accent); 
}

.hero p { 
    max-width: 600px; 
    font-size: 1.2rem; 
    margin-bottom: 2.5rem; 
    color: #636e72; 
}

.btn-primary { 
    background: var(--primary); 
    color: white; 
    padding: 1.1rem 2.2rem; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 700; 
    display: inline-block; 
    transition: 0.3s; 
    border: none; 
    cursor: pointer; 
}

.btn-secondary { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    padding: 1.1rem 2.2rem; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 700; 
    display: inline-block; 
    margin-left: 1rem; 
}

/* Section Logic */
.section { 
    padding: 100px 0; 
}

.bg-light { 
    background-color: var(--light); 
}

.sub-label { 
    color: var(--accent); 
    text-transform: uppercase; 
    font-weight: 800; 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    display: block; 
    margin-bottom: 0.5rem; 
}

.section-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}

/* About Grid */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.stats-grid { 
    display: flex; 
    gap: 3rem; 
    margin-top: 2rem; 
    border-top: 1px solid #eee; 
    padding-top: 2rem; 
}

.stat-item h4 { 
    font-size: 1.8rem; 
    color: var(--primary); 
}

.about-image img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
}

/* Services */
.services-section { 
    padding: 100px 0; 
    background: var(--light); 
}

.services-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
}

.service-group h3 { 
    font-size: 1.6rem; 
    margin-bottom: 2rem; 
    color: var(--primary); 
}

.service-item { 
    display: flex; 
    gap: 1.5rem; 
    background: white; 
    padding: 1.5rem; 
    border-radius: 12px; 
    margin-bottom: 1.5rem; 
    transition: 0.3s; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
}

.service-item:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow); 
}

.s-icon { 
    font-size: 1.8rem; 
    background: var(--light); 
    width: 60px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 12px; 
}

/* Job Cards */
.job-preview { 
    padding: 100px 0; 
}

.job-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
}

.job-card { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 15px; 
    transition: 0.3s; 
    border: 1px solid #f0f0f0; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.02); 
}

.job-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow); 
    border-color: var(--accent); 
}

.tag-label { 
    background: #E7F5EE; 
    color: var(--primary); 
    padding: 5px 15px; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700; 
}

.salary-highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.text-link { 
    color: var(--accent); 
    text-decoration: none; 
    font-weight: 800; 
    display: block; 
    margin-top: 1.5rem; 
}

/* Contact Section */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 5rem; 
    align-items: flex-start; 
}

.info-item { 
    margin-top: 2rem; 
}

.info-item strong { 
    display: block; 
    color: var(--primary); 
    font-size: 1.1rem; 
    margin-bottom: 0.3rem; 
}

.contact-form-container { 
    background: var(--white); 
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
}

.form-group { 
    margin-bottom: 1.5rem; 
}

.form-group label { 
    display: block; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    font-size: 0.9rem; 
    color: var(--primary); 
}

.form-group input, .form-group select, .form-group textarea { 
    width: 100%; 
    padding: 1rem; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    font-family: 'Inter', sans-serif; 
    transition: 0.3s; 
    background: #fdfdfd; 
}

.form-group input:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--accent); 
    background: white; 
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.1); 
}

.full-width { 
    width: 100%; 
    text-align: center; 
}

/* Footer */
.footer { 
    padding: 50px 0; 
    background: var(--primary); 
    color: white; 
    text-align: center; 
}

/* Mobile */
@media (max-width: 992px) {
    .contact-grid, .about-grid, .services-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
}