/* 曲靖代妈页面专用样式 - 设计咨询 */

/* 文本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;
}

/* Page Banner */
.page-banner {
    padding: 100px 0 80px;
    color: #fff;
    text-align: center;
}

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

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

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

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.detail-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.detail-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.service-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.block-icon i {
    font-size: 24px;
    color: #fff;
}

.service-block h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.service-block > p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.contact-widget p {
    color: #666;
    margin-bottom: 20px;
}

.contact-widget .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #666;
}

.contact-widget .contact-info p i {
    color: #667eea;
    font-size: 18px;
}

.contact-widget .contact-info p a {
    color: #667eea;
    text-decoration: none;
}

.btn-contact {
    display: block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-widget ul {
    list-style: none;
    padding: 0;
}

.service-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.service-widget ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.service-widget ul li a:hover {
    color: #667eea;
}

.service-widget ul li a i {
    margin-right: 8px;
}

.stats-widget .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.stats-widget .stat-item:last-child {
    border-bottom: none;
}

.stats-widget .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.stats-widget .stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Advantages Section */
.advantages-section {
    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: #667eea;
    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, #667eea 0%, #764ba2 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;
}

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

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

.btn-contact-large: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);
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
}

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