/* Global Styles & Design System */
:root {
    --primary-color: #8FBC8F;
    /* Dark Sea Green */
    --secondary-color: #2F4F2F;
    /* Dark Slate Gray */
    --accent-color: #e9f5e9;
    /* Light Green for backgrounds */
    --text-color: #1C1C1C;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --heading-font: 'EB Garamond', Garamond, serif;
    --body-font: 'EB Garamond', Garamond, serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

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

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

header nav ul li a {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(47, 79, 47, 0.9), rgba(47, 79, 47, 0.8)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cta-button.primary:hover {
    background: #7aa37a;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Features Section */
#features {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.feature-item {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Split Sections (Hire/Work) */
.split-section {
    padding: 6rem 0;
    background: var(--accent-color);
}

.split-section.reverse {
    background: var(--white);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-section.reverse .split-content {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.placeholder-img {
    width: 100%;
    height: 400px;
    background-color: #ccc;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.hiring-img {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
}

.worker-img {
    background-image: url('https://images.unsplash.com/photo-1581092921461-eab62e97a782?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.benefits-list li i {
    color: var(--primary-color);
}

/* Contact Section */
#contact-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--light-gray);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: #d1d5db;
    font-size: 1rem;
}

.footer-col a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        gap: 1rem;
    }

    header nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .split-content {
        flex-direction: column !important;
    }

    .hero-buttons {
        flex-direction: column;
    }
}