/* 首页专用样式 */

/* 文本Logo样式 */
.text-logo {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    max-width: 300px;
    line-height: 1.3;
    white-space: normal;
    height: auto;
    padding: 10px 0;
}

.text-logo:hover {
    color: #96d036;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/banner.jpg') center/cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-desc {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero.primary {
    background: #96d036;
    color: #fff;
}

.btn-hero.primary:hover {
    background: #7ab82a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(150, 208, 54, 0.3);
}

.btn-hero.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero.secondary:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-3px);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

/* About Intro */
.about-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight-item i {
    font-size: 20px;
    color: #96d036;
}

.highlight-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #96d036, #7ab82a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.service-card h3 a {
    color: #333;
    text-decoration: none;
}

.service-card h3 a:hover {
    color: #96d036;
}

.service-brief {
    color: #96d036;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-list li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-link {
    display: inline-block;
    color: #96d036;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.service-link:hover {
    color: #7ab82a;
}

/* History Timeline */
.history-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #96d036;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #96d036, #7ab82a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(150, 208, 54, 0.3);
}

.timeline-content {
    width: calc(50% - 70px);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 0 20px;
}

.timeline-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.timeline-item.current .timeline-year {
    background: linear-gradient(135deg, #1e3c72, #7e22ce);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

/* City Intro */
.city-intro {
    padding: 80px 0;
}

.city-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.city-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.city-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-box i {
    font-size: 36px;
    color: #96d036;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-content > p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 36px;
    color: #96d036;
}

.contact-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.contact-item p {
    font-size: 18px;
    font-weight: 600;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #96d036;
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background: #96d036;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #7ab82a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(150, 208, 54, 0.3);
}

/* Footer Styles */
.footer-logo {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-logo:hover {
    color: #96d036;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    padding: 6px 0;
}

.quick-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.quick-links ul li a:hover {
    color: #96d036;
}

.service-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags .tags a {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    color: #ccc;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.service-tags .tags a:hover {
    background: #96d036;
    color: #fff;
}

.contact-info-footer .contact-list {
    list-style: none;
    padding: 0;
}

.contact-info-footer .contact-list li {
    padding: 8px 0;
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-footer .contact-list li i {
    color: #96d036;
}

.contact-info-footer .contact-list li a {
    color: #ccc;
    text-decoration: none;
}

.contact-info-footer .contact-list li a:hover {
    color: #96d036;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .timeline::before {
        left: 50px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 20px;
    }
    
    .city-content {
        grid-template-columns: 1fr;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .city-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 25px;
    }
}