/* Custom styles for Huayang International Logistics */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Overlay for Video */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.8));
    z-index: 1;
}

/* Content on top of video */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Padding */
.py-12 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Image Box */
.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    transition: transform 0.5s ease;
}

.img-box:hover img {
    transform: scale(1.05);
}

/* Icon Box */
.icon-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: scale(1.05);
    background: rgba(0, 123, 255, 0.15);
}

.icon-box i {
    font-size: 24px;
    line-height: 1;
}

/* News Card */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Unified Card Styles for All Sections */
#services .card, #news .card, #contact .card, #about .img-box img, .partner-item {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#services .card:hover, #news .card:hover, #contact .card:hover, #about .img-box img:hover, .partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* News Section View More Button */
#news .text-center.mt-6 {
    margin-top: 5rem;
}

/* Form Elements */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Contact Info */
.contact-info .icon-box {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-info .icon-box i {
    font-size: 20px;
    line-height: 1;
}

/* Contact Section Cards Alignment */
#contact .row.g-6 {
    align-items: stretch;
}

#contact .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contact .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

/* Contact Form Title */
#contactFormTitle, #contactInfoTitle {
    text-align: center;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.25rem;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

#contactFormTitle::after, #contactInfoTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Contact Info Div Optimization */
#contact .contact-info {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    flex: 1;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

#contact .contact-info:hover {
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.08);
    transform: translateY(-2px);
}



/* Footer */
footer {
    background-color: #212529;
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Footer Background Pattern */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Footer Links Hover Effect */
footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

footer ul li a:hover::after {
    width: 100%;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo a:hover {
    transform: translateY(-3px);
}

.footer-logo i {
    font-size: 2rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.footer-logo a:hover i {
    transform: rotate(-15deg);
}

/* Footer Description */
footer #footerDesc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* Footer Social Links */
footer .social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: #fff;
}

footer .social-links a:hover {
    background-color: #007bff;
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Contact Section Social Links */
#contact .social-links {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

#contact .social-links:hover {
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.08);
    transform: translateY(-2px);
}

#contact .social-links h5 {
    color: #212529;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    display: block;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

#contact .social-links .social-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    color: #007bff;
    font-size: 1.4rem;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
    padding: 0;
    text-decoration: none;
    margin: 0;
}

#contact .social-links .social-icon:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Footer Lists */
footer h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}

footer ul {
    padding-left: 0;
}

footer ul li {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

footer ul li:hover {
    transform: translateX(5px);
}

/* Footer Contact Info */
footer ul li i {
    color: #007bff;
    width: 22px;
    font-size: 1.1rem;
    vertical-align: middle;
    margin-right: 0.75rem;
}

/* Contact Form Elements */
#contactForm .form-label {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

#contactForm .form-control {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
}

#contactForm button[type="submit"] {
    border-radius: 10px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#contactForm button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

/* Contact Info Text */
footer ul li span {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

footer ul li:hover span {
    color: #007bff;
}

/* Footer Divider */
footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
    height: 1px;
    opacity: 0.5;
}

/* Copyright */
footer .text-center {
    font-size: 0.9rem;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}
/* Copyright */
footer #copyright {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Price Section Styling */
#price {
    position: relative;
    background: url('../images/cjbj.jpg') no-repeat center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    padding: 8rem 0;
    overflow: hidden;
    background-color: transparent !important;
}

#price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 123, 255, 0.5));
    z-index: 1;
}

#price .container {
    position: relative;
    z-index: 2;
}

#price #priceTitle {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

#price #priceSubtitle {
    color: #fff !important;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#price .card {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

#price .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

#price .card-body {
    padding: 3rem;
}

#price .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#price .form-control, #price .form-select {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#price .form-control:hover, #price .form-select:hover {
    border-color: #cbd5e0;
}

#price .form-control:focus, #price .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.3rem rgba(0, 123, 255, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
    transform: translateY(-1px);
}

#price .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#price .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

#price .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Price Result Styling */
#priceResult {
    margin-top: 2rem;
}

#priceResult .alert {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    animation: slideInUp 0.5s ease-out;
}

#priceResult .alert-heading {
    color: #0369a1;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#priceResult .alert-heading::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #059669;
    font-size: 1.8rem;
}

#priceResult .mt-3 {
    padding-left: 0.5rem;
}

#priceResult p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#priceResult p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#priceResult strong {
    color: #374151;
    font-weight: 600;
    flex: 1;
}

#priceResult span {
    color: #0369a1;
    font-weight: 700;
    flex: 1;
    text-align: right;
}

/* Highlight total price */
#totalPrice {
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Add subtle animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#priceResult span {
    transition: color 0.3s ease;
}

#priceResult:hover span {
    color: #0ea5e9;
}

/* Logistics Experts Section */
#logistics-experts {
    position: relative;
    padding: calc(6rem + 25px) 0;
    background: #fff;
    height: calc(100% + 50px);
}

#logistics-experts .text-center h2 {
    color: #212529;
    margin-bottom: 1rem;
}

#logistics-experts .text-center p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Expert Avatar */
.expert-avatar img {
    border: 4px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.expert-avatar img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Expert Name */
.expert-name {
    color: #212529;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Expert Social Icons */
.expert-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

/* Social Icon Container */
.social-icon-container {
    position: relative;
    display: inline-block;
}

/* Social Icon */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid #007bff;
}

.social-icon:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* QR Code Popup */
.qrcode-popup {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 5px;
    display: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: bottom center;
}

.qrcode-popup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Show QR code on hover */
.social-icon-container:hover .qrcode-popup {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Add arrow indicator */
.qrcode-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .expert-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .qrcode-popup {
        width: 100px;
        height: 100px;
        top: -110px;
    }
}

@media (max-width: 768px) {
    #logistics-experts {
        padding: 4rem 0;
    }
    
    .expert-avatar img {
        width: 90px;
        height: 90px;
    }
    
    .expert-name {
        font-size: 1rem;
    }
    
    .expert-social-icons {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .expert-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .expert-social-icons {
        gap: 0.4rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

#priceResult:hover #totalPrice {
    color: #ef4444;
}

/* Responsive Adjustments */
/* Services Animation */
#services .row {
    position: relative;
}

#services .col-lg-4 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

#services .col-lg-4:nth-child(1) {
    animation-delay: 0.1s;
}

#services .col-lg-4:nth-child(2) {
    animation-delay: 0.2s;
}

#services .col-lg-4:nth-child(3) {
    animation-delay: 0.3s;
}

#services .col-lg-4:nth-child(4) {
    animation-delay: 0.4s;
}

#services .col-lg-4:nth-child(5) {
    animation-delay: 0.5s;
}

#services .col-lg-4:nth-child(6) {
    animation-delay: 0.6s;
}

/* Service Card Hover Effect */
#services .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
}

#services .icon-box {
    transition: transform 0.3s ease;
}

#services .card:hover .icon-box {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 10rem 0 6rem;
    }
    
    .py-12 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    /* Price Section Responsive */
    #price {
        padding: 5rem 0;
        background-attachment: scroll;
    }
    
    #price #priceTitle {
        font-size: 2rem;
    }
    
    #price #priceSubtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    #price .card {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    #price .card-body {
        padding: 1.8rem;
    }
    
    #price .form-label {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    #price .form-control, #price .form-select {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }
    
    #price .btn-primary {
        padding: 0.85rem 2rem;
        font-size: 1rem;
        border-radius: 8px;
        text-transform: none;
        letter-spacing: 0;
    }
    
    /* Footer Responsive */
    footer {
        padding-top: 3rem;
        padding-bottom: 1.5rem;
    }
    
    footer > .container > .row > div {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    footer h5 {
        text-align: center;
        font-size: 1.1rem;
    }
    
    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    footer ul li {
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    /* Remove underline effect on mobile for better touch experience */
    footer ul li a::after {
        display: none;
    }
    
    footer ul li:hover {
        transform: translateX(0);
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
}

/* Services Responsive Animation */
@media (max-width: 768px) {
    #services .col-lg-4 {
        animation-duration: 0.5s;
        margin-bottom: 2rem;
    }
    
    /* Reduce animation delays on mobile for faster loading */
    #services .col-lg-4:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    #services .col-lg-4:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    #services .col-lg-4:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    #services .col-lg-4:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    #services .col-lg-4:nth-child(5) {
        animation-delay: 0.5s;
    }
    
    #services .col-lg-4:nth-child(6) {
        animation-delay: 0.6s;
    }
    
    /* Remove hover effects on mobile devices */
    #services .card:hover {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    #services .card:hover .icon-box {
        transform: scale(1);
    }
    
    /* Adjust card padding on mobile */
    #services .card-body {
        padding: 1.5rem;
    }
    
    /* Adjust icon size on mobile */
    #services .icon-box i {
        font-size: 40px;
    }
    
    .social-icons-container {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    #contact .social-links .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    footer #footerDesc {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    footer .text-center {
        font-size: 0.8rem;
        padding-top: 1rem;
    }
    
    footer #copyright {
        font-size: 0.8rem;
    }
    
    /* Price Result Responsive */
    #priceResult .alert {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    #priceResult .alert-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    #priceResult p {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        text-align: left;
    }
    
    #priceResult span {
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
    }
    
    #totalPrice {
        font-size: 1.2rem;
    }
}

/* Daily Benefits Section */
#daily-benefits {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

/* Empty state styles */
.benefits-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

.daily-benefits-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.benefits-scroll {
    display: flex;
    gap: 2rem;
    padding: 0.5rem 1rem;
    animation: scrollLeft 20s linear infinite;
    white-space: nowrap;
}

.benefit-item {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 320px;
    width: 320px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
    align-items: center;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: normal;
    display: block;
    line-height: 1.3;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.benefit-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}

.benefit-consult-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-consult-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.35) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


    font-weight: 700;
}


}

.expert-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon-container {
    position: relative;
}





/* Responsive Design for Logistics Experts */
@media (max-width: 992px) {
    #logistics-experts .col-lg-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    #logistics-experts {
        padding: 4rem 0;
    }
    
    #logistics-experts h2 {
        font-size: 2rem;
    }
    
    #logistics-experts .col-md-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .expert-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .expert-name {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    #logistics-experts .col-sm-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    #logistics-experts .lead {
        font-size: 1.1rem;
    }
    
    .expert-social-icons {
        gap: 0.3rem;
    }
    
    .qrcode-popup {
        width: 100px;
        height: 100px;
        top: -110px;
    }
}

/* Continuous scrolling achieved by duplicating HTML content */

/* Responsive Adjustments for Daily Benefits */
@media (max-width: 768px) {
    .benefits-scroll {
        gap: 1.5rem;
        padding: 0.5rem;
        animation-duration: 15s;
    }
    
    .benefit-item {
        min-width: 260px;
        width: 260px;
        font-size: 1rem;
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    .benefit-icon {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .benefit-content {
        gap: 0.8rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .benefit-desc {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .benefit-consult-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        border-radius: 18px;
    }
    
    /* Responsive empty state */
    .benefits-empty {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

/* About Us Section */
#about {
    overflow: hidden;
}

#about .col-lg-6 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#about img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    filter: brightness(0.95) contrast(1.02);
}

#about img:hover {
    transform: scale(1.03) rotate(1deg);
    filter: brightness(1) contrast(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#about .img-fluid {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    #about img {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    #about img:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

#about #aboutTitle {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    font-weight: 700;
    color: #212529;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#about #aboutDesc {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    text-align: justify;
    text-justify: inter-word;
}

#about ul.list-unstyled {
    padding-left: 0;
    margin-top: 1rem;
}

#about ul.list-unstyled li {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #007bff;
}

#about ul.list-unstyled li:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

#about ul.list-unstyled li i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #007bff;
    vertical-align: middle;
}

#about ul.list-unstyled li span {
    font-weight: 500;
    color: #495057;
    letter-spacing: 0.2px;
    vertical-align: middle;
}

/* Partners Section */
#partners {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

#partners .container {
    max-width: none;
    padding: 0 2rem;
}

#partners .text-center {
    margin-bottom: 3rem;
}

#partners #partnersTitle {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1rem;
}

#partners #learnMoreBtn {
    background-color: #ffc107;
    color: #212529;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#partners #learnMoreBtn:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Partners Scroll Containers */
.partners-scroll-right,
.partners-scroll-left {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    height: 100px;
    display: flex;
    align-items: center;
    width: calc(100% + 4rem);
    margin-left: -2rem;
}

.partners-track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.2rem;
}

.partner-item {
    padding: 1rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-item img {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* Scroll Animations */
@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partners-scroll-right .partners-track {
    animation: scrollRight 30s linear infinite;
}

.partners-scroll-left .partners-track {
    animation: scrollLeft 30s linear infinite;
}

/* Pause animation on hover */
.partners-scroll-right:hover .partners-track,
.partners-scroll-left:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive adjustments for About Us section */
@media (max-width: 768px) {
    #about .col-lg-6 {
        gap: 1.25rem;
    }
    
    #about #aboutTitle {
        font-size: 2rem;
        text-align: center;
    }
    
    #about #aboutDesc {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
    }
    
    #about ul.list-unstyled li {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    #about ul.list-unstyled li i {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
}

/* Responsive adjustments for Price section */
@media (max-width: 768px) {
    #price {
        padding: 5rem 0;
    }
    
    #price #priceTitle {
        font-size: 2rem;
    }
    
    #price #priceSubtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    #price .card-body {
        padding: 1.5rem;
    }
    
    #price .btn-primary {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    #price .form-control, #price .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Responsive adjustments for partners */
@media (max-width: 768px) {
    #partners {
        padding: 3rem 0;
    }
    
    #partners #partnersTitle {
        font-size: 1.8rem;
    }
    
    #partners #learnMoreBtn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .partners-scroll-right,
    .partners-scroll-left {
        height: 100px;
        margin-bottom: 1.5rem;
        width: calc(100% + 2rem);
        margin-left: -1rem;
    }
    
    .partner-item {
        width: 140px;
        height: 70px;
        padding: 0.8rem;
    }
    
    .partner-item img {
        max-height: 60px;
        max-width: 120px;
    }
    
    .partners-track {
        gap: 0.2rem;
    }
    
    .partners-scroll-right .partners-track {
        animation-duration: 25s;
    }
    
    .partners-scroll-left .partners-track {
        animation-duration: 25s;
    }
}

/* Floating Buttons Styles */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    padding: 12px 8px;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-align: center;
}

.float-btn i {
    font-size: 24px;
    margin-bottom: 6px;
    width: 100%;
    text-align: center;
    color: white;
}

.float-btn span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    position: relative;
}

.float-btn:hover {
    background-color: #0056b3;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* 确保a标签类型的浮动按钮继承正确的样式 */
.float-btn a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* 确保a标签类型的浮动按钮hover时保持正确的样式 */
.float-btn a:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
}

/* QR Code Container */
.qr-container {
    position: relative;
}

.qr-code {
    position: absolute;
    right: 90px;
    bottom: 0;
    display: none;
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.qr-code::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.qr-container:hover .qr-code {
    display: block;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        right: 10px;
        bottom: 30px;
        gap: 8px;
    }
    
    .float-btn {
        width: 70px;
        padding: 10px 6px;
    }
    
    .float-btn i {
        font-size: 20px;
        margin-bottom: 4px;
        color: white;
    }
    
    .float-btn span {
        font-size: 11px;
    }
    
    .qr-code {
        width: 130px;
        height: 130px;
        right: 80px;
    }
}