/* EQUIPMENT CAROUSEL SECTION */

/* Wrapper - Single viewport height */
.equipment-carousel-wrapper {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh !important;
}

.equipment-carousel-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 100vh !important;
    gap: 0 !important;
}

/* LEFT SIDE - Carousel (horizontal navigation only) */
.equipment-carousel {
    background: transparent !important;
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 40px !important;
    position: relative !important;
    min-height: 100vh !important;
    min-width: 0 !important;
    /* Prevent grid blowout */
}

.carousel-track-container {
    overflow: hidden !important;
    width: 100% !important;
}

.carousel-track {
    display: flex !important;
    transition: transform 0.5s ease !important;
    width: 100% !important;
    /* Ensure track takes full width of container */
}

/* ... */

/* Equipment Cards */
.equipment-card {
    width: 100% !important;
    flex: 0 0 100% !important;
    /* Ensure rigid 100% width */
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 2px solid rgba(156, 39, 176, 0.2) !important;
    opacity: 0 !important;
    transform: scale(0.95) !important;
    transition: all 0.5s ease !important;
}

.equipment-card.active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.equipment-icon {
    width: 80px !important;
    height: 60px !important;
    margin: 0 auto 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.equipment-icon svg {
    width: 100% !important;
    height: auto !important;
    stroke: #ce93d8 !important;
    /* Lighter purple */
    stroke-width: 1.5px !important;
    /* Thinner stroke */
    fill: none !important;
}

.equipment-card h3 {
    font-size: 1.75rem !important;
    color: #000000 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-weight: 700 !important;
}

.equipment-card p {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #333333 !important;
}



.equipment-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
}

.equipment-card li {
    position: relative !important;
    padding-left: 20px !important;
    margin-bottom: 8px !important;
    color: #333333 !important;
    font-size: 0.95rem !important;
    text-align: left !important;
}

.equipment-card li::before {
    content: "•" !important;
    color: #9c27b0 !important;
    font-weight: bold !important;
    position: absolute !important;
    left: 0 !important;
}

.equipment-card strong {
    color: #9c27b0 !important;
    font-weight: 600 !important;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #000000 !important;
    border: 2px solid #9c27b0 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.carousel-btn:hover {
    background: #9c27b0 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.carousel-btn svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #9c27b0 !important;
}

.carousel-btn:hover svg {
    stroke: #ffffff !important;
}

.carousel-prev {
    left: 20px !important;
}

.carousel-next {
    right: 20px !important;
}

/* RIGHT SIDE - Info Panel */
.equipment-info-panel {
    height: 100vh !important;
    background: #000000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;
    margin: 20px !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(156, 39, 176, 0.3) !important;
    padding: 60px !important;
    text-align: center !important;
}

.equipment-info-panel h2 {
    font-size: 3rem !important;
    color: #9c27b0 !important;
    margin-bottom: 30px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
}

.equipment-info-panel p {
    font-size: 1.25rem !important;
    color: #ffffff !important;
    line-height: 1.8 !important;
    max-width: 500px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .equipment-carousel-container {
        grid-template-columns: 1fr !important;
    }

    .equipment-info-panel {
        position: relative !important;
        height: auto !important;
        min-height: 50vh !important;
        order: 1 !important;
    }

    .equipment-carousel {
        order: 2 !important;
        padding: 60px 20px !important;
    }

    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
    }
}

/* SERVICES SECTION SPECIFIC OVERRIDES */
/* Transparent background to show dots, Black text for readability */
/* Text shadow fix was here, now removed to standardize styling */

/* FINAL OVERRIDE ATTEMPT */
.mod-transparent-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* INDEPENDENT TRANSPARENT PANEL CLASS */
.equipment-info-panel-transparent {
    height: 100vh !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;
    margin: 20px !important;
    border-radius: 24px !important;
    /* No border, no shadow */
    padding: 60px !important;
    text-align: center !important;
}

.equipment-info-panel-transparent h2 {
    font-size: 3rem !important;
    color: #000000 !important;
    margin-bottom: 30px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    text-shadow: none !important;
}

.equipment-info-panel-transparent p {
    font-size: 1.25rem !important;
    color: #000000 !important;
    line-height: 1.8 !important;
    max-width: 500px !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Mobile Responsive adjustment for new class */
@media (max-width: 768px) {
    .equipment-info-panel-transparent {
        position: relative !important;
        height: auto !important;
        min-height: 50vh !important;
        order: 1 !important;
    }
}