/* ============================================================
   LANDING HIGH VOLTAGE DC CONTACTOR — Hero Section
   ============================================================ */

.lhvdc-hero {
    background: linear-gradient(to right, #1b9d4a 45%, rgba(27, 157, 74, 0.85) 65%, rgba(27, 157, 74, 0.4) 100%), 
                url('https://images.unsplash.com/photo-1562408590-e32931084e23?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') no-repeat right center / cover;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.lhvdc-hero-content {
    max-width: 620px;
    margin-right: auto;
}

.lhvdc-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.lhvdc-hero-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.lhvdc-hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.lhvdc-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.lhvdc-btn-solid {
    background-color: #147a39; /* Solid dark green */
    color: #ffffff !important;
    border: 1px solid #147a39;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lhvdc-btn-solid:hover {
    background-color: #0f5d2b;
    border-color: #0f5d2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.lhvdc-btn-outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.lhvdc-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.lhvdc-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
}

.lhvdc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lhvdc-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.lhvdc-feature-text {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lhvdc-hero {
        background: linear-gradient(to bottom, rgba(27, 157, 74, 0.95) 30%, rgba(27, 157, 74, 0.8) 100%), 
                    url('https://images.unsplash.com/photo-1562408590-e32931084e23?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') no-repeat center center / cover;
        padding: 80px 0;
    }
    
    .lhvdc-hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lhvdc-hero-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .lhvdc-hero-actions {
        gap: 15px;
    }
    
    .lhvdc-btn {
        width: 100%; /* Full width buttons on mobile */
    }
}

@media (max-width: 576px) {
    .lhvdc-hero {
        padding: 60px 0;
    }
}


/* ============================================================
   LANDING HIGH VOLTAGE DC CONTACTOR — Products Section
   ============================================================ */

.lhvdc-products {
    padding: 80px 0;
    background-color: #ffffff;
}

.lhvdc-products-header {
    text-align: center;
    margin-bottom: 50px;
}

.lhvdc-products-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin-bottom: 15px;
}

.lhvdc-products-subtitle {
    font-size: clamp(14.5px, 1.8vw, 16px);
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tabs */
.lhvdc-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1.5px solid #edf2f7;
}

.lhvdc-tabs {
    display: flex;
    gap: 30px;
}

.lhvdc-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.lhvdc-tab-btn:hover {
    color: #1b9d4a;
}

.lhvdc-tab-btn.active {
    color: #1b9d4a;
    border-bottom: 3px solid #1b9d4a;
}

/* Tab Panes */
.lhvdc-tab-pane {
    display: none;
}

.lhvdc-tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Products Grid */
.lhvdc-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Product Card */
.lhvdc-product-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lhvdc-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.lhvdc-product-img-box {
    background-color: #f7f9fb;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    position: relative;
    border-bottom: 1px solid #edf2f7;
}

.lhvdc-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.lhvdc-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ea580c; /* Orange badge */
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lhvdc-product-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lhvdc-product-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.lhvdc-product-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.lhvdc-product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
}

.lhvdc-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4a5568;
}

.lhvdc-spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b9d4a;
    flex-shrink: 0;
}

.lhvdc-product-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.lhvdc-btn-detail {
    background-color: #1b9d4a;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lhvdc-btn-detail:hover {
    background-color: #147a39;
    transform: translateY(-1px);
}

/* Pagination */
.lhvdc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.lhvdc-page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    color: #4a5568;
    background-color: #ffffff;
}

.lhvdc-page-num:hover {
    border-color: #1b9d4a;
    color: #1b9d4a;
}

.lhvdc-page-num.active {
    background-color: #1b9d4a;
    border-color: #1b9d4a;
    color: #ffffff;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lhvdc-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .lhvdc-products {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .lhvdc-products-grid {
        grid-template-columns: 1fr;
    }
    
    .lhvdc-tabs {
        gap: 15px;
    }
    
    .lhvdc-tab-btn {
        padding: 10px 12px;
        font-size: 14.5px;
    }
}

