/* CSS Variables */
:root {
    --olive-green: #5C6B4A;
    --olive-dark: #3D4A32;
    --olive-light: #7A8B68;
    --tan: #D4C4A8;
    --tan-light: #E8DCC8;
    --cream: #F5F1E8;
    --white: #FFFFFF;
    --text-dark: #2C3E2D;
    --text-secondary: #5C5C5C;
    --text-muted: #8C8A87;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--olive-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--olive-dark);
}

.btn-secondary {
    background-color: var(--tan);
    color: var(--olive-dark);
}

.btn-secondary:hover {
    background-color: var(--tan-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--tan);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--tan);
    color: var(--olive-dark);
}

.btn-dark {
    background-color: var(--olive-dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--text-dark);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 0 120px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--olive-dark);
}

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

.nav a {
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--olive-green);
}

.nav .btn {
    padding: 12px 24px;
}

.nav .btn-primary {
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--olive-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid var(--tan);
}

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

.mobile-nav a {
    font-size: 16px;
    color: var(--text-dark);
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--olive-green);
}

.mobile-nav .btn {
    text-align: center;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    background-image: url('hero-bg.jpg?v=2');
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 120px 80px;
    margin-top: 80px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 74, 50, 0.92) 0%, rgba(44, 62, 45, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background-color: var(--olive-light);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: var(--tan-light);
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 80px 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .label {
    color: var(--tan);
}

.label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--olive-green);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    width: 540px;
    background-color: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--tan);
    overflow: hidden;
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.link {
    font-size: 14px;
    font-weight: 600;
    color: var(--olive-green);
    transition: color 0.3s ease;
}

.link:hover {
    color: var(--olive-dark);
}

/* Pricing Section */
.pricing {
    background-color: var(--cream);
}

.pricing-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    width: 360px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--tan);
    padding: 32px;
    text-align: center;
}

.pricing-card.featured {
    background-color: var(--olive-dark);
}

.pricing-card.featured .price,
.pricing-card.featured h3 {
    color: var(--white);
}

.pricing-card.featured .price {
    color: var(--tan);
}

.pricing-card.featured p {
    color: var(--tan-light);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 8px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 72px;
}

/* Staffing Section */
.staffing {
    background-color: var(--olive-dark);
}

.staffing-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.staffing-card {
    width: 520px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
}

.staffing-card.alt {
    background-color: var(--cream);
    border: 1px solid var(--tan);
}

.staffing-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.staffing-card > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.staffing-card ul {
    margin-bottom: 24px;
}

.staffing-card li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.staffing-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--olive-green);
}

/* Blog Section */
.blog {
    background-color: var(--white);
}

.blog-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    width: 380px;
    background-color: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--tan);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 24px;
}

.date {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-content h4 {
    font-size: 18px;
    margin: 12px 0;
    line-height: 1.4;
}

.author {
    font-size: 14px;
    color: var(--olive-green);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--tan);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 42px;
    color: var(--olive-dark);
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.newsletter-form input {
    width: 320px;
    padding: 14px 20px;
    border: 1px solid var(--tan-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--olive-green);
}

/* Contact Section */
.contact {
    background-color: var(--cream);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 20px;
    border: 1px solid var(--tan);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--olive-green);
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
.footer {
    background-color: var(--olive-dark);
    padding: 60px 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--tan-light);
    line-height: 1.6;
}

.footer-brand .disclaimer {
    font-size: 12px;
    color: var(--olive-light);
    margin-top: 16px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tan);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--tan-light);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--olive-light);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom span {
    font-size: 14px;
    color: var(--tan-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .header {
        padding: 0 40px;
    }

    section {
        padding: 60px 40px;
    }

    .hero {
        padding: 100px 40px 60px;
    }

    .footer {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .services-grid,
    .pricing-grid,
    .staffing-grid,
    .blog-grid {
        flex-wrap: wrap;
    }

    .service-card,
    .staffing-card {
        width: 100%;
        max-width: 540px;
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
    }

    .blog-card {
        width: 100%;
        max-width: 380px;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 600px;
        padding: 100px 24px 60px;
        background-image: url('hero-bg.jpg?v=2');
        background-size: cover;
        -webkit-background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 320px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
