* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2c2c2c;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Top Bar */
.top-bar {
    background-color: #F47920;
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo img {
    height: 3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links > a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links > a:hover {
    color: #7BA428;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: #2c2c2c;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.dropdown-btn:hover {
    color: #7BA428;
}

.chevron {
    width: 1rem;
    height: 1rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 14rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #e8f2ff;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-nav {
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: #2c2c2c;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: #7BA428;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
    min-height: 500px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.25rem;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: #7BA428;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Recruitment Cards */
.recruitment-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.recruitment-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.recruitment-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #F47920;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.recruitment-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.recruitment-card .card-content {
    background-color: #ffffff;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.quote-content {
    max-width: 56rem;
    text-align: center;
}

.quote-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #666666;
    margin-bottom: 1rem;
}

.quote-content p {
    font-size: 1rem;
    color: #666666;
}

/* Footer */
.footer {
    background-color: #7BA428;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.location {
    margin-bottom: 1rem;
}

.location-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location p:not(.location-title) {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.phone {
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
