
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('../images/hero-bg.jpg');*/
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(1.2);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 180px 0 100px;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.3);
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* 按钮样式 */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* 统计数据 */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* 滚动指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 8px;
    background: white;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
/* Services Section Styles */
.services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Cardo, serif
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.service-card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-content .btn svg {
    transition: transform 0.3s ease;
}

.service-content .btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-inner {
        padding: 20px;
    }

    .service-icon img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background-color: white;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.link-item .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* User Experience Section Styles */
.user-experience {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.experience-wrapper {
    position: relative;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Cardo, serif;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.divider-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.divider-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.experience-grid {
    display: grid;
    align-items: center;
}

.experience-content {
    padding-right: 30px;
}

.highlight-text {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.experience-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.experience-stats .stat-box .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.experience-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-content {
        padding-right: 0;
    }

    .experience-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .user-experience {
        padding: 60px 0;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .experience-header h2 {
        font-size: 1.8rem;
    }

    .experience-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .experience-badge {
        padding: 10px 20px;
    }

    .badge-text {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-content, .experience-image {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.experience-content {
    animation-delay: 0.2s;
}

.experience-image {
    animation-delay: 0.4s;
}

.stat-box {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-box:nth-child(1) {
    animation-delay: 0.6s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.8s;
}

.stat-box:nth-child(3) {
    animation-delay: 1s;
}


/* Case Study Section 优化 */
.case-study {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
}

.case-study-image-float-right img,
.case-study-image img {
    border-radius: 20px;
    /* 增加圆角 */
    width: 60%;
    height: auto;
    max-width: 450px;
    /* 调整图片最大宽度 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* 添加阴影效果 */
}

.case-study-image-float-right {
    display: flex;
    justify-content: flex-end;
    /* 确保图片靠右 */
}

.case-study-content {
    position: relative;
    padding-left: 30px;
    /* 为星号和列表图标留出空间 */
}

.asterisk {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 28px;
    color: #ff6b4a;
}

.case-study-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: Cardo, serif;
}

.case-study-details {
    list-style: none;
    margin: 30px 0;
}

.case-study-details li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.case-study-details li:before {
    content: "\2714";
    position: absolute;
    left: 0;
    color: #ff6b4a;
    font-weight: bold;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #ff6b4a;
    color: #ff6b4a;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    background-color: #ff6b4a;
    color: white;
}
/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-title {
    font-family: Cardo, serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.posts-grid {
    margin: 0 auto;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
}

.post-card {
    padding: 40px 0;
}

.post-card:not(:last-child) {
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.post-header:hover {
    transform: translateX(10px);
}

.post-title {
    margin: 0;
    font-size: 1.25rem;
    flex: 1;
    min-width: 200px;
    font-family: 'Inter', sans-serif;
}

.post-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.post-title a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-title a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.post-meta span {
    display: inline-block;
}

.post-meta .separator {
    margin: 0 5px;
    color: var(--text-lighter);
}

.post-date {
    color: var(--primary-color);
    font-weight: 500;
}

.post-author, .post-category {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.post-author:hover, .post-category:hover {
    color: var(--primary-color);
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .post-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
    
    .post-title {
        font-size: 1.1rem;
    }

    .post-meta {
        white-space: normal;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 1.8rem;
    }

    .post-card {
        padding: 30px 0;
    }
}
/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.newsletter-card {
    background-color:#ffffff;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    margin: 0 auto;
}

.newsletter-card h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #333;
    font-family: Cardo, serif
}

.newsletter-card p {
    color: #666;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.subscribe-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 300px;
    font-size: 1rem;
}

.subscribe-form input:focus{
    outline: none;
    border-color: #ff6b4a;
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

.subscribe-form button {
    padding: 12px 30px;
    font-size: 1rem;
}

/* CEO Quote Section */
.ceo-quote {
    background-color: #0a192f;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.ceo-quote .container {
    text-align: center;
    width: 60%;
}

.ceo-quote blockquote {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.ceo-quote cite {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.ceo-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ceo-avatar {
    width: 60px;
    height: 60px;
}

.ceo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ceo-details {
    display: flex;
    flex-direction: column;
}

.ceo-details .name {
    font-weight: bold;
    font-style: normal;
    font-size: 1.2rem;
}

.ceo-details .title {
    color: #999;
    font-style: normal;
    font-size: 0.9rem;
}

/* 响应式设计中的调整 */
@media (max-width: 768px) {
    .ceo-quote .container {
        width: 90%;
    }

    .ceo-quote blockquote {
        font-size: 1.5rem;
    }

    .ceo-info {
        flex-direction: column;
        gap: 10px;
    }

    .ceo-details {
        align-items: center;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .newsletter-card {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .ceo-quote blockquote {
        font-size: 1.5rem;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-study-image-float-right {
        justify-content: center;
    }

    .case-study-image {
        text-align: center;
    }

    .case-study-content {
        text-align: center;
        padding-left: 0;
    }

    .asterisk {
        left: 50%;
        transform: translateX(-50%);
    }

    .case-study-details li {
        text-align: left;
    }

    /* Blog Posts Section */
    .post-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-title {
        font-size: 1rem;
    }

    .post-meta {
        white-space: normal;
    }

    /* 修复页脚响应式布局 */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr; /* 改为单列布局 */
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .link-column {
        text-align: center;
        margin-bottom: 20px;
    }

    .link-column:last-child {
        margin-bottom: 0;
    }
}

/* 动画关键帧 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* 添加动画类 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}