/* HR Consulting Page Styles */

/* Base Styles */
body {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.6;
}

.hero-contact-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-actions {
    margin-bottom: 3rem;
}

.subscription-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

.subscription-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.subscription-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1rem;
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
}

.subscribe-button {
    padding: 0.8rem 1.5rem;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
}

.subscribe-button:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.success-message {
    text-align: center;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FFFFFF;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.cta-button:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.cta-button.primary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.cta-button.primary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.cta-button.secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.cta-button.secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #000000;
}

/* Services Section */
.services-section {
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #808080;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.service-card p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

/* Core Services Section */
.core-services-section {
    background-color: #FFFFFF;
    border-top: 1px solid #808080;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.core-service {
    text-align: center;
    padding: 2rem 1rem;
}

.core-service h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.core-service p {
    color: #808080;
    font-size: 1rem;
}

/* Value Section */
.value-section {
    background-color: #FFFFFF;
    border-top: 1px solid #808080;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.benefit p {
    color: #808080;
    font-size: 1rem;
    margin: 0;
}

.benefits-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Approach Section */
.approach-section {
    background-color: #FFFFFF;
    border-top: 1px solid #808080;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.approach-item p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #FFFFFF;
    border-top: 1px solid #808080;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #808080;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.consultation-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .core-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

/* Banner Section Styles */
.banner-section {
    width: 100%;
    margin: 4rem 0;
    overflow: hidden;
}

/* Promo Banner 1 */
.promo-banner-1 {
    position: relative;
    background-image: url('../../assets/images/big1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Promo Banner 2 */
.promo-banner-2 {
    position: relative;
    background-image: url('../../assets/images/big3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* 100% 透明 */
    z-index: 1;
}

.promo-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 30% 透明遮罩 */
    z-index: 1;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000; /* 修改文字为黑色以在透明背景上显示 */
}

.promo-text {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    color: #000000; /* 修改文字为黑色以在透明背景上显示 */
}

.banner-image-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .banner-section {
        margin: 2rem 0;
    }
    
    .promo-banner-1,
    .promo-banner-2 {
        height: 300px;
    }
    
    .promo-title {
        font-size: 2rem;
    }

    .banner-image-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        margin: 1.5rem 0;
    }
    
    .banner-image-container {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .core-services-grid {
        grid-template-columns: 1fr;
    }
}