:root {
    --primary-red: #FF3C3C;
    --text-white: #FFFFFF;
    --bg-dark: #2D2D2D;
    --nav-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--text-white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 0.9rem;
}

.nav-item i {
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--nav-text);
    cursor: pointer;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icons button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--nav-text);
    transition: color 0.3s ease;
}

.nav-icons button:hover {
    color: var(--primary-red);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-content {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-white);
    color: var(--text-white);
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.close-search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: var(--primary-red);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--bg-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
}

.hero-content {
    max-width: 800px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.introducing {
    color: var(--primary-red);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

h1:first-line {
    text-transform: uppercase;
}

.underline {
    width: 160px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 2.5rem 0;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    line-height: 1.4;
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.feature-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    border-top: 1px solid #eee;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #404040 100%);
    color: var(--text-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    max-width: 500px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background: #ff2525;
}

.btn-secondary {
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

.cta-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Insights Section */
.insights {
    padding: 6rem 2rem;
    background: #fff;
}

.insights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--bg-dark);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-content {
    padding: 2rem;
}

.category {
    color: var(--primary-red);
    font-weight: 500;
    font-size: 0.9rem;
}

.insight-content h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.insight-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

/* Staffing Options */
.staffing-options {
    padding: 6rem 2rem;
    background: #fff;
}

.options-content {
    max-width: 1200px;
    margin: 0 auto;
}

.options-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--bg-dark);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.option-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.option-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--bg-dark);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address, .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address i, .phone i, .email i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.address p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--bg-dark);
}

.contact-info {
    margin-top: 1rem;
}

.phone, .email {
    display: flex;
    align-items: center;
}

.phone a, .email a {
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.phone a:hover, .email a:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-image img {
        height: 300px;
    }

    .contact-section {
        padding: 4rem 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .search-input {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .feature-card img,
    .insight-card img {
        height: 180px;
    }

    .feature-card h3,
    .insight-content h3 {
        font-size: 1.3rem;
    }
}
