/* 曲靖代生页面专用样式 - 安装施工 */

.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;
}

/* Construction Hero */
.construction-hero {
    padding: 100px 0 80px;
    color: #fff;
    text-align: center;
}

.construction-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-construction.primary {
    background: #fff;
    color: #4facfe;
}

.btn-construction.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

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

.btn-construction.secondary:hover {
    background: #fff;
    color: #4facfe;
    transform: translateY(-3px);
}

/* Construction Services */
.construction-services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.construction-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-top: 4px solid #4facfe;
}

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

.construction-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.construction-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.construction-brief {
    color: #4facfe;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

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

.construction-list li strong {
    color: #333;
}

.construction-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.feature-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #e8f4fd;
    color: #4facfe;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Construction Process */
.construction-process {
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.process-item::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -30px;
    width: 2px;
    background: #e0e0e0;
}

.process-item:last-child::before {
    display: none;
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.process-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
}

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

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

/* Construction Advantages */
.construction-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

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

.advantage-item i {
    font-size: 40px;
    color: #4facfe;
    margin-bottom: 15px;
}

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

.advantage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 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: #fff;
}

.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;
}

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

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

/* Footer */
.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) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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