/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e0 100%);
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, rgba(192, 86, 33, 0.95) 0%, rgba(221, 107, 32, 0.95) 100%);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid rgba(246, 173, 85, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Georgia', 'Arial', serif;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
}

/* 简化的悬停效果 */
.main-nav ul li a:hover {
    color: #f6ad55;
    background: rgba(255, 255, 255, 0.1);
}

/* 当前激活状态样式 */
.main-nav ul li a.active {
    color: #f6ad55;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 450px;
    min-height: 400px;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 86, 33, 0.9) 0%, rgba(221, 107, 32, 0.9) 100%);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
}

.decoration-line {
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: transparent;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-icon i {
    font-size: 32px;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.hero-content p {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-feature-item i {
    color: #ffffff;
    font-size: 14px;
}

.hero-feature-item span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #c05621 0%, #dd6b20 100%);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #dd6b20;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 86, 33, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 86, 33, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #c05621;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #c05621;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(192, 86, 33, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #c05621 0%, #dd6b20 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 86, 33, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 60px 0 80px;
}

.about-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
}

.about-content h3 {
    color: #c05621;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    color: #4a6a8a;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Business Data */
.business-data {
    margin-bottom: 50px;
}

.business-data h3 {
    color: #c05621;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.business-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    transition: all 0.3s ease;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
    border-color: rgba(192, 86, 33, 0.2);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c05621 0%, #dd6b20 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.business-info h4 {
    color: #c05621;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-info p {
    color: #c05621;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.business-info small {
    color: #666;
    font-size: 13px;
    display: block;
}

/* Warehouse Network */
.warehouse-network {
    margin-bottom: 50px;
}

.warehouse-network h3 {
    color: #c05621;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-desc {
    text-align: center;
    color: #4a6a8a;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.warehouse-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    transition: all 0.3s ease;
}

.warehouse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
    border-color: rgba(192, 86, 33, 0.2);
}

.warehouse-card h4 {
    color: #c05621;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f5fa;
}

.warehouse-details p {
    color: #4a6a8a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.warehouse-details strong {
    color: #c05621;
}

/* One-Stop Services */
.one-stop-services,
.overseas-warehouse,
.integrated-solutions {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
}

.one-stop-services h3,
.overseas-warehouse h3,
.integrated-solutions h3 {
    color: #c05621;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.one-stop-services p,
.overseas-warehouse p,
.integrated-solutions p {
    color: #4a6a8a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.one-stop-services strong,
.overseas-warehouse strong,
.integrated-solutions strong {
    color: #c05621;
}

/* Intelligent Management */
.intelligent-management {
    margin-bottom: 50px;
}

.intelligent-management h3 {
    color: #c05621;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.management-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    transition: all 0.3s ease;
}

.management-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
    border-color: rgba(192, 86, 33, 0.2);
}

.management-item i {
    color: #c05621;
    font-size: 36px;
    margin-bottom: 20px;
}

.management-item h4 {
    color: #c05621;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.management-item p {
    color: #4a6a8a;
    line-height: 1.6;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .business-grid,
    .warehouse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .management-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .business-grid,
    .warehouse-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e6f0f8;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
}

.feature-card i {
    font-size: 40px;
    color: #c05621;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    color: #c05621;
    margin-bottom: 15px;
}

.feature-card p {
    color: #4a6a8a;
    font-size: 14px;
    line-height: 1.6;
}

/* Stats Section Styles */
.stats-section {
    background: #ffffff;
    padding: 60px 0 80px;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffd0a0;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c05621, #f6ad55, #c05621);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(192, 86, 33, 0.15);
}

.stat-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #c05621;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #c05621;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(192, 86, 33, 0.2);
}

.stat-item p {
    font-size: 17px;
    font-weight: 700;
    color: #c05621;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-desc {
    font-size: 14px;
    color: #5a7ba5;
    font-weight: normal;
    line-height: 1.6;
    padding: 0 10px;
}

/* Services Section Styles */
.services-section {
    background: #ffffff;
    padding: 50px 0 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #c05621;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c05621;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 8px;
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(192, 86, 33, 0.08);
    border-color: #c05621;
}

.service-icon {
    background: #f8f9fa;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #c05621;
    position: relative;
}

.service-icon i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(192, 86, 33, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.05);
    background: rgba(192, 86, 33, 0.15);
}

.service-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #c05621;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.service-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

.service-content p:last-child {
    margin-bottom: 0;
    margin-top: auto;
}

.service-content strong {
    color: #c05621;
    font-weight: 700;
}

/* FBA Warehouses Section */
.fba-warehouses-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 60px 0 80px;
}

/* Country Tabs */
.country-tabs {
    margin-bottom: 40px;
    overflow-x: auto;
}

.country-tab-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.country-tab-item {
    background: white;
    color: #c05621;
    padding: 12px 24px;
    border: 2px solid #c05621;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-tab-item:hover {
    background: #c05621;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 86, 33, 0.3);
}

.country-tab-item.active {
    background: #c05621;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 86, 33, 0.3);
}

/* Country Content */
.country-content-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
}

.country-content {
    display: block;
}

.country-content h3 {
    color: #c05621;
    font-size: 22px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Warehouse Grid */
.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
}

.warehouse-card {
    background: linear-gradient(145deg, #ffffff, #f8fdff);
    border: 1px solid #dceaf8;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.warehouse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(192, 86, 33, 0.15);
    border-color: #ffd0a0;
}

.warehouse-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f5fa;
}

.warehouse-header h4 {
    color: #c05621;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warehouse-location {
    color: #dd6b20;
    font-size: 14px;
    font-weight: 600;
}

.warehouse-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warehouse-address i {
    color: #c05621;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.warehouse-address p {
    color: #4a6a8a;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Industry Solutions Section */
.industry-solutions-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
    padding: 60px 0 80px;
}

/* Solutions Layout */
.solutions-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

/* Solutions Sidebar */
.solutions-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    overflow: hidden;
}

.solutions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f5fa;
}

.solution-list-item:last-child {
    border-bottom: none;
}

.solution-list-item:hover {
    background-color: #fff8f0;
    color: #c05621;
}

.solution-list-item.active {
    background-color: #c05621;
    color: white;
}

.solution-list-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #c05621;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #c05621;
}

.solution-list-item.active .solution-list-icon {
    background: #c05621;
    color: white;
    border-color: #c05621;
}

/* Solutions Content */
.solutions-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    padding: 30px;
    min-height: 500px;
}

.solution-content {
    display: none;
}

.solution-content.active {
    display: block;
}

.solution-content h3 {
    color: #c05621;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-detail {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.solution-info {
    flex: 2;
}

.solution-info h4 {
    color: #c05621;
    font-size: 18px;
    margin: 20px 0 15px;
}

.solution-info p {
    color: #4a6a8a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.solution-info ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.solution-info ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #4a6a8a;
    line-height: 1.6;
}

.solution-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c05621;
    font-weight: bold;
    font-size: 16px;
}

.solution-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: 12px;
    padding: 40px;
    min-height: 200px;
}

.solution-visual-icon {
    font-size: 80px;
    color: #c05621;
    opacity: 0.7;
}

.industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e6f0f8;
    width: 100%;
    max-width: 240px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c05621, #dd6b20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.solution-card h3 {
    font-size: 16px;
    color: #c05621;
    margin-bottom: 10px;
}

.solution-card p {
    color: #4a6a8a;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 13px;
    flex-grow: 1;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    color: #c05621;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    color: #dd6b20;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

/* Detailed Industry Solutions */
.detailed-solution-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 60px 0;
    display: none; /* Initially hidden, shown via JavaScript */
}

.detailed-solution-section.active {
    display: block;
}

.detailed-solution-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.solution-details {
    display: flex;
    align-items: center;
    gap: 40px;
}

.solution-description {
    flex: 2;
}

.solution-description h3 {
    color: #c05621;
    margin: 20px 0 15px;
    font-size: 20px;
}

.solution-description p {
    color: #4a6a8a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.solution-description ul {
    list-style: none;
    padding: 0;
}

.solution-description ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a6a8a;
}

.solution-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c05621;
    font-weight: bold;
}

.solution-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.detailed-icon {
    font-size: 80px;
    color: #c05621;
    opacity: 0.7;
}

.back-to-main {
    text-align: center;
    padding: 20px 0;
}

.back-to-main-link {
    display: inline-block;
    background: linear-gradient(135deg, #c05621, #dd6b20);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 86, 33, 0.3);
}

.back-to-main-link:hover {
    background: linear-gradient(135deg, #dd6b20, #c05621);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 86, 33, 0.4);
}

.back-to-main-link i {
    margin-right: 8px;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e6f0f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #d1e2f2;
}

.testimonial-card p {
    font-style: italic;
    color: #4a6a8a;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-right: 40px;
}

.client-info h4 {
    color: #c05621;
    margin-bottom: 5px;
}

.client-info span {
    color: #dd6b20;
    font-size: 14px;
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, #eef5fc 0%, #dbe9f9 100%);
    padding: 60px 0 80px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo i {
    font-size: 32px;
    color: #c05621;
    margin-bottom: 10px;
}

.partner-logo span {
    font-weight: 600;
    color: #dd6b20;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 60px 0 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #c05621;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(26, 58, 108, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.faq-question i {
    color: #c05621;
    font-size: 20px;
    margin-right: 10px;
}

.faq-question h4 {
    color: #c05621;
    font-size: 16px;
    font-weight: 700;
}

.faq-answer p {
    color: #4a6a8a;
    line-height: 1.7;
    margin: 0;
}

/* Global Presence Section */
.global-presence-section {
    background: linear-gradient(135deg, rgba(192, 86, 33, 0.9) 0%, rgba(221, 107, 32, 0.9) 100%);
    padding: 40px 0 60px;
    text-align: center;
    color: white;
    position: relative;
}

.global-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.global-content p {
    font-size: 17px;
    color: #e6f2ff;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, #eef5fc 0%, #dbe9f9 100%);
    padding: 60px 0 80px;
    position: relative;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0ebf7;
}

.subscribe-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.subscribe-form input,
.subscribe-form textarea {
    padding: 15px 20px;
    border: 2px solid #d1e2f2;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.subscribe-form input:focus,
.subscribe-form textarea:focus {
    outline: none;
    border-color: #c05621;
    box-shadow: 0 0 0 3px rgba(192, 86, 33, 0.2);
}

.subscribe-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, rgba(192, 86, 33, 0.95) 0%, rgba(192, 86, 33, 0.95) 100%);
    color: #ffffff;
    padding: 30px 0 20px;
    text-align: center;
    border-top: 3px solid rgba(246, 173, 85, 0.8);
    position: relative;
}

/* Solutions Overview Section */
.solutions-overview-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 60px 0 80px;
    position: relative;
}

.solutions-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-overview-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.solution-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(192, 86, 33, 0.15);
    border-color: #c05621;
}

.solution-overview-card .solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c05621, #dd6b20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.solution-overview-card h3 {
    color: #c05621;
    font-size: 22px;
    margin-bottom: 15px;
}

.solution-overview-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Solution Modal Styles */
.solution-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.solution-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.solution-modal-header {
    background: linear-gradient(135deg, #c05621 0%, #dd6b20 100%);
    padding: 25px 30px;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solution-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.solution-modal-body {
    padding: 30px;
}

.solution-modal-body p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* FAQ Categories Section */
.faq-categories-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

/* FAQ Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

/* FAQ Sidebar */
.faq-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    overflow: hidden;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f5fa;
}

.faq-list-item:last-child {
    border-bottom: none;
}

.faq-list-item:hover {
    background-color: #fff8f0;
    color: #c05621;
}

.faq-list-item.active {
    background-color: #c05621;
    color: white;
}

.faq-list-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #c05621;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #c05621;
}

.faq-list-item.active .faq-list-icon {
    background: #c05621;
    color: white;
    border-color: #c05621;
}

/* FAQ Content */
.faq-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0f8;
    padding: 30px;
    min-height: 500px;
}

.faq-content-item {
    display: none;
}

.faq-content-item.active {
    display: block;
}

.faq-content-item h3 {
    color: #c05621;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8faff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e6f0f8;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 20px;
    color: #c05621;
    flex-shrink: 0;
}

.faq-question h4 {
    color: #c05621;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.faq-answer {
    margin-left: 35px;
}

.faq-answer p {
    color: #4a6a8a;
    line-height: 1.7;
    margin: 0;
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-category-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e6f0f8;
    width: 100%;
    max-width: 240px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(192, 86, 33, 0.15);
    border-color: #c05621;
}

.faq-category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c05621, #dd6b20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.faq-category-card h3 {
    color: #c05621;
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-category-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    flex-grow: 1;
}

/* FAQ Modal Styles */
.faq-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.faq-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-modal-header {
    background: linear-gradient(135deg, #c05621 0%, #dd6b20 100%);
    padding: 25px 30px;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #f6ad55;
    text-decoration: none;
}

.faq-modal-body {
    padding: 30px;
}

.faq-modal-container {
    max-height: 60vh;
    overflow-y: auto;
}

.modal .faq-item {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modal .faq-question {
    background: #f8f9fa;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.modal .faq-question:hover {
    background: #e9ecef;
}

.modal .faq-question i {
    margin-right: 15px;
    color: #c05621;
    font-size: 18px;
}

.modal .faq-question h4 {
    margin: 0;
    color: #c05621;
    font-size: 18px;
}

.modal .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.modal .faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

.modal .faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p {
    font-size: 14px;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.stat-item {
    animation: fadeInUp 0.8s ease forwards;
}

.service-item {
    animation: fadeInUp 0.8s ease forwards;
}



/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .platform-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* FBA Warehouse Styles */
.expandable-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.expandable-header:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.expandable-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.expandable-icon {
    font-size: 14px;
    color: #ff7f00;
    transition: transform 0.3s ease;
}

.expandable-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.expandable-content.show {
    padding: 20px;
    max-height: none;
    overflow: visible;
}

.warehouse-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.warehouse-table th {
    background: #ff7f00;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e05a00;
}

.warehouse-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 14px;
}

.warehouse-table tr:nth-child(even) {
    background: #f9f9f9;
}

.warehouse-table tr:hover {
    background: #f5f5f5;
}

.warehouse-table td:first-child {
    font-weight: 600;
    color: #ff7f00;
}

/* Responsive Table */
@media (max-width: 768px) {
    .warehouse-table {
        display: block;
        overflow-x: auto;
    }
    
    .warehouse-table thead,
    .warehouse-table tbody,
    .warehouse-table th,
    .warehouse-table td,
    .warehouse-table tr {
        display: block;
    }
    
    .warehouse-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .warehouse-table tr {
        border: 1px solid #e0e0e0;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .warehouse-table td {
        border: none;
        border-bottom: 1px solid #e0e0e0;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
    
    .warehouse-table td:before {
        position: absolute;
        top: 12px;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-label);
        font-weight: 600;
        color: #ff7f00;
    }
}

/* Country Tabs Responsive */
@media (max-width: 1024px) {
    .country-tab-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .country-tab-item {
        padding: 8px 15px;
        font-size: 14px;
    }
}