
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a4fc7;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://www.zoneding.com/wp-content/uploads/2025/02/Mobile-crushing-equipment-1.jpg') center/cover;
    opacity: 0.2;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Product Card */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Specs List */
.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.specs-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Tags */
.tag-badge {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

/* Button Styles */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark), #083eb0);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Mobile Section */
.mobile-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

/* Combination Section */
.combination-section {
    padding: 80px 0;
    background: #fff;
}

.combo-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.combo-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.combo-card .card-body {
    padding: 1.25rem;
    background: #fff;
}

/* Flow Chart Section */
.flow-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.flow-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Related Equipment */
.related-section {
    padding: 80px 0;
    background: #fff;
}

.related-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    background: #fff;
}

.related-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.15);
}

.related-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}
/* Service Section */
.service-section {
    background: #006fb9;
    padding: 80px 0;
    color: #fff;
}

.service-section .section-title {
    color: #fff;
}

.service-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section h2 {
        font-size: 1.75rem;
    }

    .product-card .card-img-top {
        height: 180px;
    }
}
