/*
Theme Name: Logimax
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Logistics & Transportation HTML Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

1. General styles
2. Typography
3. Helpers
4. Preloader
5. Go up button
6. Header and navigation
7. Hero Section
8. About us
9. Services
10. Fun facts
11. Projects
12. Pricing
13. Testimonial
14. CTA
15. Team
16. Video Banner
17. Shop
18. Marquee
19. Blog
20. Footer

Main Style file-> assets/css/main.css 
*/

 .lida-wrapper {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        box-sizing: border-box;
        width: 100%;
        overflow: hidden;
    }
    .lida-wrapper *, .lida-wrapper *::before, .lida-wrapper *::after {
        box-sizing: border-box;
    }
    
    /* 通用容器：限制最大宽度并居中 */
    .lida-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* 通用标题样式 */
    .lida-section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    .lida-section-title span {
        display: block;
        color: #ff5e14; /* 橙色点缀 */
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .lida-section-title h2 {
        font-size: 36px;
        color: #0c1630; /* 深蓝色 */
        margin: 0;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }
    .lida-section-title h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #ff5e14;
        margin: 15px auto 0;
    }

    /* --- 1. 业务介绍板块 --- */
    .lida-intro-section {
        padding: 80px 0;
        background-color: #fff;
    }
    .lida-intro-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }
    .lida-intro-text {
        flex: 1;
        min-width: 300px;
    }
    .lida-intro-text h3 {
        font-size: 30px;
        color: #0c1630;
        margin-bottom: 25px;
        font-weight: 700;
    }
    .lida-intro-text p {
        margin-bottom: 20px;
        color: #666;
        font-size: 16px;
        text-align: justify;
    }
    /* 模拟“内部运营”的高亮盒子 */
    .lida-feature-box {
        flex: 1;
        min-width: 300px;
        background: #f8f9fa;
        padding: 40px;
        border-top: 5px solid #0c1630;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .lida-feature-box h4 {
        margin-top: 0;
        color: #0c1630;
        font-size: 22px;
        margin-bottom: 15px;
    }
    .lida-check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .lida-check-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        color: #555;
    }
    .lida-check-list li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #ff5e14;
        font-weight: bold;
    }

    /* --- 2. 优势板块 (Grid布局) --- */
    .lida-reasons-section {
        padding: 80px 0;
        background-color: #f4f7fc; /* 浅灰蓝背景 */
    }
    .lida-grid {
        display: grid;
        /* 自适应列，最小宽度320px */
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
        gap: 30px;
    }
    .lida-card {
        background: #fff;
        padding: 35px;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-bottom: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }
    .lida-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 2px solid #ff5e14;
    }
    .lida-card-num {
        font-size: 50px;
        font-weight: 900;
        color: #f0f0f0;
        position: absolute;
        top: 10px;
        right: 20px;
        line-height: 1;
        z-index: 0;
    }
    .lida-card h4 {
        font-size: 20px;
        color: #0c1630;
        margin: 0 0 15px 0;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }
    .lida-card p {
        color: #666;
        font-size: 15px;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    /* --- 3. 流程 CTA 板块 --- */
    .lida-cta-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #0c1630 0%, #1a2b50 100%);
        color: #fff;
        text-align: center;
    }
    .lida-cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #fff;
    }
    .lida-cta-content p {
        font-size: 18px;
        opacity: 0.8;
        margin-bottom: 30px;
    }
    .lida-btn {
        display: inline-block;
        padding: 15px 40px;
        background-color: #ff5e14;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 50px;
        transition: background 0.3s;
    }
    .lida-btn:hover {
        background-color: #fff;
        color: #ff5e14;
    }

    /* --- 4. 客户评价 --- */
    .lida-testi-section {
        padding: 80px 0;
        background: #fff;
    }
    .lida-quote-box {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        background: #fff;
        padding: 40px;
        border: 1px solid #eee;
        border-radius: 10px;
    }
    .lida-quote-icon {
        font-size: 40px;
        color: #ff5e14;
        margin-bottom: 20px;
        display: block;
    }
    .lida-quote-text {
        font-size: 20px;
        font-style: italic;
        color: #555;
        margin-bottom: 25px;
    }
    .lida-quote-author {
        font-weight: bold;
        color: #0c1630;
        font-size: 16px;
    }

    /* 手机端适配 */
    @media (max-width: 768px) {
        .lida-intro-flex { flex-direction: column; }
        .lida-section-title h2 { font-size: 28px; }
        .lida-card-num { font-size: 40px; }
    }
    
      /* === LIDA About 页面专用样式 === */
      /* 1. 顶部水平导航条 (原侧边栏分类) */
    .lida-top-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 60px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }
    .lida-nav-link {
        display: inline-block;
        padding: 12px 30px;
        background: #f4f7fc;
        color: #555;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    .lida-nav-link:hover {
        background: #fff;
        color: #ff5e14;
        border-color: #ff5e14;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 94, 20, 0.15);
    }
    .lida-nav-link.active {
        background: #ff5e14;
        color: #fff;
        box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
    }

    /* 2. 内容区域限制 (防止文字过宽难以阅读) */
    .lida-content-container {
        max-width: 1000px; /* 限制最大阅读宽度 */
        margin: 0 auto; 
    }

    /* 通用标题 */
    .lida-main-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        color: #0c1630;
        margin-bottom: 40px;
        position: relative;
    }
    .lida-main-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: #ff5e14;
        margin: 15px auto 0;
    }
    
    .lida-text-block {
        font-size: 17px;
        line-height: 1.9;
        color: #666;
        text-align: justify;
        margin-bottom: 60px;
    }

    /* 3. 设施数据网格 (4列) */
    .lida-stats-row {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 80px;
        flex-wrap: wrap;
    }
    .lida-stat-card {
        flex: 1;
        min-width: 200px;
        background: #fff;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-top: 4px solid #0c1630;
        transition: 0.3s;
    }
    .lida-stat-card:hover {
        transform: translateY(-10px);
        border-top-color: #ff5e14;
    }
    .lida-stat-val {
        display: block;
        font-size: 36px;
        font-weight: 800;
        color: #0c1630;
        margin-bottom: 10px;
    }
    .lida-stat-name {
        font-size: 15px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* 4. 服务网格 (改为卡片式布局) */
    .lida-service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }
    .lida-service-card {
        background: #f9f9f9;
        padding: 40px 30px;
        border-radius: 10px;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }
    .lida-service-card:hover {
        background: #0c1630;
        color: #fff;
        box-shadow: 0 15px 30px rgba(12, 22, 48, 0.2);
    }
    .lida-service-card h4 {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 700;
        color: #0c1630;
    }
    .lida-service-card:hover h4 { color: #fff; }
    .lida-service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .lida-service-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
        color: #666;
    }
    .lida-service-card:hover .lida-service-list li { color: #ccc; }
    .lida-service-list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #ff5e14;
    }

    /* 5. 图片画廊 (保持2x2) */
    .lida-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 80px;
    }
    .lida-img-box {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 16/9;
    }
    .lida-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }
    .lida-img-box:hover img { transform: scale(1.1); }
    .lida-img-tag {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: #fff;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        color: #0c1630;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* 6. 底部联系栏 (原侧边栏CTA迁移) */
      .lida-cta-box {
        position: relative;
        background-color: #0c1630; /* 纯深蓝底色 */
        background-image: linear-gradient(135deg, #0c1630 0%, #1c2e52 100%);
        padding: 50px 60px;
        border-radius: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden; /* 裁剪背景装饰 */
        box-shadow: 0 20px 40px rgba(12, 22, 48, 0.15);
        margin-top: 60px;
    }

    /* 背景装饰圆环（增加设计感） */
    .lida-cta-box::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        border: 40px solid rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        z-index: 1;
    }
    .lida-cta-box::before {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 94, 20, 0.1) 0%, rgba(255, 94, 20, 0) 70%);
        border-radius: 50%;
        z-index: 1;
    }

    /* 左侧文字区 */
    .lida-cta-text {
        position: relative;
        z-index: 2;
        max-width: 55%;
    }
    .lida-cta-text h3 {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .lida-cta-text p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    /* 右侧操作区 */
    .lida-cta-actions {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 40px; /* 电话和按钮的间距 */
    }

    /* 电话组件 */
    .lida-phone-group {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .lida-phone-icon-box {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: #ff5e14;
    }
    .lida-phone-info {
        display: flex;
        flex-direction: column;
    }
    .lida-phone-info span {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .lida-phone-info a {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        line-height: 1.2;
        transition: color 0.3s;
    }
    .lida-phone-info a:hover {
        color: #ff5e14;
    }

    /* 按钮组件 */
    .lida-cta-btn {
        background-color: #ff5e14;
        color: #fff;
        padding: 16px 36px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap; /* 防止按钮换行 */
        box-shadow: 0 10px 20px rgba(255, 94, 20, 0.3);
    }
    .lida-cta-btn:hover {
        background-color: #fff;
        color: #ff5e14;
        transform: translateY(-3px);
    }

    /* 手机适配 */
    @media(max-width: 768px) {
        .lida-gallery { grid-template-columns: 1fr; }
        .lida-bottom-cta { flex-direction: column; text-align: center; }
        .lida-phone-box { text-align: center; }
        .lida-stats-row { flex-direction: column; }
         .lida-cta-box {
            flex-direction: column;
            text-align: center;
            padding: 40px 30px;
        }
        .lida-cta-text {
            max-width: 100%;
            margin-bottom: 30px;
        }
        .lida-cta-actions {
            flex-direction: column;
            gap: 25px;
            width: 100%;
        }
        .lida-phone-group {
            flex-direction: column;
            gap: 10px;
        }
    }