/* Harsle-Style Immersive Layout CSS */
.harsle-section {
    width: 100vw;
    min-height: 90vh;
    background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #0a0a0a 80%);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    margin-bottom: 2px;
    overflow: hidden;
}

.harsle-product-title {
    text-align: center;
    z-index: 10;
}

.harsle-product-title h2 {
    font-family: var(--accent-font), sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.harsle-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.harsle-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.harsle-product-image:hover img {
    transform: scale(1.02);
}

.harsle-product-actions {
    display: flex;
    gap: 20px;
    z-index: 10;
}

.harsle-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 0;
}

.harsle-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Category Grid Overhaul */
.harsle-category-grid {
    display: flex;
    flex-direction: column;
    background: #000;
    gap: 0;
    padding: 0;
    width: 100%;
}

.harsle-category-card {
    position: relative;
    border-radius: 0; /* Seamless edges */
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Widescreen cinematic */
    background: #000;
    transition: all 0.4s ease;
    display: block;
    text-decoration: none !important;
}

.harsle-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    display: block;
    margin: 0;
    padding: 0;
}



.harsle-category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.harsle-category-title {
    color: #fff !important;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}



@media (max-width: 768px) {
    .harsle-category-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .harsle-category-card {
        aspect-ratio: 4 / 3;
    }
    
    .harsle-category-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
}

/* Product Row Layout (Harsle Style) */
.hl-product-row {
    display: flex;
    flex-wrap: wrap;
    background: #020408;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hl-product-image {
    flex: 1 1 40%;
    min-width: 300px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hl-product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hl-product-content {
    flex: 1 1 50%;
    padding: 40px;
    color: #f0f6fc;
}

.hl-product-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hl-product-tagline {
    color: #cc0000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hl-product-short-desc {
    color: #c9d1d9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hl-product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hl-product-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #c9d1d9;
}

.hl-product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #cc0000;
    font-weight: bold;
}

.hl-product-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hl-btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hl-btn-primary {
    background: linear-gradient(135deg, #cc0000 0%, #a30000 100%);
    color: #ffffff;
}

.hl-btn-primary:hover {
    background: linear-gradient(135deg, #a30000 0%, #800000 100%);
    color: #ffffff;
}

.hl-btn-outline-blue {
    background: transparent;
    border: 2px solid #cc0000;
    color: #cc0000;
}

.hl-btn-outline-blue:hover {
    background: #cc0000;
    color: #ffffff;
}

@media (max-width: 991px) {
    .hl-product-row {
        flex-direction: column;
    }
    .hl-product-image {
        padding: 20px;
    }
    .hl-product-content {
        padding: 30px 20px;
    }
}

/* Global Styles for Service Items (Products) on Homepage */
.service-item-gold {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid #eaeaea;
}

.service-item-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.service-item-image-gold {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
}

.service-item-image-gold figure {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-image-gold img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s;
}

.service-item-gold:hover img {
    transform: scale(1.05);
}

.service-item-header-gold {
    min-height: 80px;
    margin-top: 20px;
}

.service-item-title-gold {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-item-title-gold h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.service-item-title-gold h2 a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.service-item-title-gold h2 a:hover {
    color: #cc0000;
}

.service-item-body-gold {
    margin-top: auto;
    text-align: center;
}

.service-readmore-btn-gold {
    margin-top: auto;
}

.readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
