/* Hero Section */
.product-hero-section {
    background: #F5F7FA;
    padding: 80px 0;
}

.hero-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-column {
    flex: 2;
}

.image-column {
    flex: 1;
}

.hero-title {
    color: #1B2D6B;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 600;
}

.divider-wrapper {
    position: relative;
    margin: 35px 0;
    text-align: center;
}

.divider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    padding: 6px;
    background: rgba(245,247,250,0.95);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(27,45,107,0.1);
    z-index: 1;
}

.divider-line {
    height: 1px;
    background: rgba(156,0,0,0.15);
}

.hero-description {
    color: #44517A;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-description strong {
    color: #1B2D6B;
    font-weight: 600;
}

.hero-description a {
    color: #9c0000;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-btn.primary {
    background: #9c0000;
    color: white;
}

.cta-btn.primary:hover {
    background: #800000;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: #1B2D6B;
    color: white;
}

.cta-btn.secondary:hover {
    background: #0F1C44;
    transform: translateY(-2px);
}

.hero-image {
    width: 630px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(27,45,107,0.15);
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
    }
    
    .image-column {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(27,45,107,0.15);
}
}

@media (max-width: 768px) {
    .product-hero-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        justify-content: center;
        width: 100%;
    }
}
/* Specifications Section */
.specs-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #F5F7FA 0%, #E8ECF2 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: -80px;
}

.spec-card {
    background: #FFF;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 24px rgba(27,45,107,0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.spec-card:hover {
    transform: translateY(-8px);
}

.icon-container {
    width: 120px;
    height: 120px;
    margin: -80px auto 25px;
    position: relative;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(27,45,107,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon {
    width: 60%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(156,0,0,0.1));
}

.experience-years {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFA726;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.spec-title {
    color: #1B2D6B;
    font-size: 1.3rem;
    margin: 15px 0 10px;
    font-weight: 600;
}

.spec-desc {
    color: #44517A;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .specs-grid {
        margin-top: -60px;
        gap: 25px;
    }
    
    .icon-container {
        width: 100px;
        height: 100px;
        margin-top: -60px;
    }
    
    .experience-years {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .specs-section {
        padding: 60px 0 100px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: -40px auto 0;
    }
    
    .icon-container {
        width: 90px;
        height: 90px;
    }
    
    .spec-title {
        font-size: 1.2rem;
    }
}
/* Featured Products Section */
.featured-products {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F9FAFC 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #9c0000;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    color: #1B2D6B;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.section-divider {
    position: relative;
    margin: 40px auto;
    width: 120px;
}

.divider-line {
    height: 1px;
    background: rgba(156,0,0,0.2);
}

.divider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #FFF;
    padding: 8px;
}

.lead-text {
    color: #44517A;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Series Styling */
.product-series {
    margin: 80px 0;
}

.series-header {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 4px solid #9c0000;
}

.series-title {
    color: #1B2D6B;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.series-description {
    color: #667085;
    line-height: 1.7;
    max-width: 680px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(27,45,107,0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-image {
    /*height: 260px;*/
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.model-number {
    color: #9c0000;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.technical-specs {
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(27,45,107,0.1);
}

.spec-label {
    color: #667085;
    font-size: 0.95rem;
}

.spec-value {
    color: #1B2D6B;
    font-weight: 500;
}

.cta-btn.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #9c0000;
    color: #FFF;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-btn.with-icon:hover {
    background: #800000;
}

.arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .series-header {
        padding-left: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}