 /* Enhanced Professional Design */
  .page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
    background-size: cover;
  }

  /* Image Slider Enhancement */
  #listing_img_slider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    position: relative;
}

  #listing_img_slider .slick-slide {
    border-radius: 15px;
    overflow: hidden;
}
#listing_img_slider .slick-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Custom Dots Styling */
#listing_img_slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

#listing_img_slider .slick-dots li {
    margin: 0 5px;
    width: 12px;
    height: 12px;
}

#listing_img_slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#listing_img_slider .slick-dots li button::before {
    display: none;
}

#listing_img_slider .slick-dots li.slick-active button {
    background: #007bff;
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

#listing_img_slider .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Custom Arrow Styling */
#listing_img_slider .slick-prev,
#listing_img_slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#listing_img_slider .slick-prev:hover,
#listing_img_slider .slick-next:hover {
    background: #007bff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

#listing_img_slider .slick-prev {
    left: 20px;
}

#listing_img_slider .slick-next {
    right: 20px;
}

#listing_img_slider .slick-prev::before,
#listing_img_slider .slick-next::before {
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #333;
    opacity: 1;
    transition: color 0.3s ease;
}

#listing_img_slider .slick-prev:hover::before,
#listing_img_slider .slick-next:hover::before {
    color: white;
}

#listing_img_slider .slick-prev::before {
    content: '\f104';
}

#listing_img_slider .slick-next::before {
    content: '\f105';
}

/* Remove default number indicators */
#listing_img_slider .slick-dots li button:before {
    display: none !important;
}

  /* Equipment Header */
  .listing_detail_head {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
  }

  .listing_detail_head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
  }

  /* Price Info Card */
  .price_info {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
  }

  .price_info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
  }

  .price_info p {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: white;
  }

  .price_options {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
  }

  .price_options span {
    display: block;
    margin: 5px 0;
    padding: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
  }

  /* Features Grid */
  .main_features {
    margin: 30px 0;
  }

  .main_features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
  }

  .main_features li {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .main_features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
  }

  .main_features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  .main_features li i {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 15px;
    display: block;
  }

  .main_features li h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
  }

  .main_features li p {
    color: #666;
    font-size: 14px;
    margin: 0;
  }

  /* Tabs Enhancement */
  .listing_detail_wrap {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .nav-tabs {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: none;
    padding: 0;
  }

  .nav-tabs > li {
    margin: 0;
  }

  .nav-tabs > li > a {
    border: none !important;
    border-radius: 0;
    padding: 20px 30px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-tabs > li.active > a,
  .nav-tabs > li > a:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
  }

  .nav-tabs > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-tabs > li.active > a::before,
  .nav-tabs > li > a:hover::before {
    width: 80%;
  }

  .tab-content {
    padding: 30px;
  }

  /* Booking Form Enhancement */
  .sidebar_widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
  }

  .sidebar_widget:hover {
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  }

  .widget_heading {
    border-bottom: 2px solid #007bff;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }

  .widget_heading h5 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
  }

  .widget_heading h5 i {
    color: #007bff;
    margin-right: 10px;
  }

  .rental-options {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
  }

  .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    transform: translateY(-2px);
  }

  .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,123,255,.3);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,.4);
    background: linear-gradient(135deg, #0056b3, #004085);
  }

  /* Equipment Badge */
  .equipment-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 25px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
  }

  .equipment-type-badge.machine {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
  }

  .equipment-type-badge.tool {
    background: linear-gradient(135deg, #3498db, #2980b9);
  }

  /* Similar Equipment Cards */
  .product-listing-m {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
  }

  .product-listing-m:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .product-listing-img {
    position: relative;
    overflow: hidden;
    height: 200px;
  }

  .product-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .product-listing-m:hover .product-listing-img img {
    transform: scale(1.1);
  }

  /* Datepicker Enhancement */
  .ui-datepicker {
    border-radius: 12px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 15px;
  }

  .ui-datepicker-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
  }

  .ui-datepicker td.booked-date a {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white !important;
    border-radius: 50%;
    cursor: not-allowed;
  }

  /* Animation Classes */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
  }

  /* Loading Animation */
  .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Share Buttons */
  .share_vehicle {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
  }

  .share_vehicle a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: scale(1);
  }

  .share_vehicle a:hover {
    transform: scale(1.2);
  }

  .share_vehicle a:nth-child(1) { background: #3b5998; }
  .share_vehicle a:nth-child(2) { background: #1da1f2; }
  .share_vehicle a:nth-child(3) { background: #0077b5; }
  .share_vehicle a:nth-child(4) { background: #dd4b39; }
  
  /* Optional fields initially hidden */
  .optional-fields {
    display: none;
  }

  /* Error and Success Messages - Matching testimonial style */
  .errorWrap {
    padding: 10px;
    margin: 0 0 20px 0;
    background: #fff;
    border-left: 4px solid #dd3d36;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
  }
  .succWrap{
    padding: 10px;
    margin: 0 0 20px 0;
    background: #fff;
    border-left: 4px solid #5cb85c;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
  }
  
  /* Responsive adjustments */
@media (max-width: 768px) {
    #listing_img_slider .slick-slide img {
        height: 300px;
    }
    
    #listing_img_slider .slick-prev,
    #listing_img_slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    #listing_img_slider .slick-prev {
        left: 10px;
    }
    
    #listing_img_slider .slick-next {
        right: 10px;
    }
    
    #listing_img_slider .slick-dots {
        bottom: 15px;
    }
    
    #listing_img_slider .slick-dots li {
        margin: 0 3px;
        width: 10px;
        height: 10px;
    }
    
    #listing_img_slider .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}

/* Add overlay for better dot visibility on light images */
#listing_img_slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    pointer-events: none;
    border-radius: 0 0 15px 15px;
}