/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-company-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-company-content {
    flex: 1;
    min-width: 300px;
}

.about-company-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

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

.company-info {
    margin-bottom: 30px;
}

.company-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.company-address {
    color: #666;
    font-style: italic;
}

.company-tagline, .company-philosophy {
    margin-bottom: 30px;
}

.company-tagline h3, .company-philosophy h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.company-tagline p, .company-philosophy p {
    color: #555;
    line-height: 1.7;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--color-primary);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-company-wrapper {
        flex-direction: column;
    }
    
    .about-company-content,
    .about-company-image {
        width: 100%;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        right: 20px;
        bottom: -15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
}


.service-image {
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin: -30px -30px 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}


/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    margin-bottom: 50px;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* 联系信息部分样式 */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-info-box h3 {
    color: var(--color-primary, #e74c3c);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary, #e74c3c);
    font-size: 1.5rem;
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-table th, 
.contact-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.contact-table th {
    width: 30%;
    color: #555;
    font-weight: 600;
    vertical-align: top;
}
.contact-table th.note {
    text-align: left !important;
    font-size: 12px;
}

.contact-table td {
    color: #333;
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
    border-bottom: none;
}

.contact-table a {
    color: var(--color-primary, #e74c3c);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-table a:hover {
    color: var(--color-primary-dark, #c0392b);
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center !important;
    padding-top: 20px !important;
}

@media (max-width: 768px) {
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-table th, 
    .contact-table td {
        display: block;
        width: 100%;
    }
    
    .contact-table th {
        padding-bottom: 5px;
        border-bottom: none;
    }
    
    .contact-table td {
        padding-top: 5px;
        padding-bottom: 15px;
    }
}

.w-full {
    width: 100%;
}

/* 优化About JapanAuc部分的布局 */
.about-company-section {
    padding: 60px 0;
}

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

.about-company-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.about-company-content {
    flex: 1;
    min-width: 300px;
}

.about-company-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-company-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-content p {
    color: #555;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-company-wrapper {
        flex-direction: column;
    }
    
    .about-company-content,
    .about-company-image {
        flex: 1 1 100%;
    }
    
    .company-features {
        flex-direction: column;
    }
    
    .feature-item {
        flex: 1 1 100%;
    }
}

.company-description {
    margin-bottom: 25px;
}

.highlight-text {
    font-size: 1.2em;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
    border-left: 4px solid #e63946;
    padding-left: 15px;
}

.advantages-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantages-title {
    font-size: 1.25em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantages-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1.2rem;
}

.advantages-list i {
    color: #e63946;
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .highlight-text {
        font-size: 1.1em;
    }
    
    .advantages-section {
        padding: 15px;
    }
    .feature-icon {
        display: none;
    }
}
