/* 曲靖代怀页面专用样式 - 材料供应 */

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

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

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

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

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

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

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

.btn-material.primary {
    background: #fff;
    color: #f5576c;
}

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

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

.btn-material.secondary:hover {
    background: #fff;
    color: #f5576c;
    transform: translateY(-3px);
}

/* Material Categories */
.material-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.material-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.material-card.glass::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.material-card.stone::before {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.material-card.metal::before {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.material-card.aluminum::before {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.material-card.accessory::before {
    background: linear-gradient(90deg, #fa709a, #fee140);
}

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

.material-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.material-card.glass .material-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.material-card.stone .material-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.material-card.metal .material-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.material-card.aluminum .material-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.material-card.accessory .material-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

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

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

.material-brief {
    color: #f5576c;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

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

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

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

.feature-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f8f9fa;
    color: #666;
    border-radius: 20px;
    font-size: 12px;
}

/* Material Advantages */
.material-advantages {
    padding: 80px 0;
}

.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: #f5576c;
    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;
}

/* Material Process */
.material-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #f5576c;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

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

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 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: #f5576c;
    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);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step::after {
        display: none;
    }
}

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