/* HR Services Page Styles */

/* HR Hero Section */
.hr-hero {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    padding: 8rem 2rem 6rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hr-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hr-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hr-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hr-hero h1 span {
    color: var(--primary-green);
}

.hr-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* HR Sections */
.hr-section,
.hr-on-demand,
.document-storage {
    padding: 6rem 2rem;
}

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

.featured-section:nth-child(even) {
    background: var(--light-gray);
}

.hr-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HR Tools Grid */
.hr-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hr-tool-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.hr-tool-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hr-tool-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 1.75rem;
}

.hr-tool-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hr-tool-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* HR On Demand */
.hr-on-demand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.hr-on-demand-text .lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.hr-on-demand-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hr-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.hr-feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hr-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.hr-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 1.75rem;
}

.hr-feature-card h3 {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hr-feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Document Storage */
.document-storage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.document-storage-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.document-storage-text .lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.document-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.document-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.document-feature-item:hover {
    background: rgba(76, 175, 80, 0.1);
}

.document-feature-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.document-feature-item span {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

/* HR CTA */
.hr-cta {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a252f 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hr-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}

.hr-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hr-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hr-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hr-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button-white {
    background: var(--white);
    color: var(--dark-gray);
    padding: 1rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
}

.button-white:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.button-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
}

.button-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .hr-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hr-on-demand-content,
    .document-storage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hr-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hr-hero {
        padding: 5rem 1.5rem 4rem;
    }

    .hr-hero h1 {
        font-size: 2.25rem;
    }

    .hr-hero p {
        font-size: 1.1rem;
    }

    .hr-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hr-tool-card {
        padding: 1.5rem;
    }

    .document-features {
        grid-template-columns: 1fr;
    }

    .hr-cta h2 {
        font-size: 2rem;
    }

    .hr-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hr-tools-grid {
        grid-template-columns: 1fr;
    }
}
