 /* Main Container Layout */
 .main-container {
     padding: 20px 0;
 }

 .content-grid {
     display: grid;
     grid-template-columns: 280px 1fr 280px;
     gap: 20px;
     align-items: stretch;
 }

 /* Categories Sidebar */
 .categories-sidebar {
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     height: 400px;
     display: flex;
     flex-direction: column;
 }

 .categories-title {
     background: linear-gradient(135deg, #d42027 0%, #b52c32 100%);
     color: white;
     padding: 12px 20px;
     font-weight: 600;
     font-size: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
     flex-shrink: 0;
 }

 .categories-list {
     flex: 1;
     overflow-y: auto;
     padding: 5px 10px;
 }

 .category-item {
     padding: 12px 15px;
     margin: 5px 0;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
     border-left: 3px solid transparent;
 }

 .category-item:hover {
     background: rgba(212, 32, 39, 0.05);
     border-left-color: #d42027;
     transform: translateX(5px);
 }

 .category-name {
     font-size: 14px;
     font-weight: 500;
     color: #333;
 }

 /* Banner Section */
 .banner-section {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     height: 400px;
 }

 .banner-slider {
     width: 100%;
     height: 100%;
 }

 .banner-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
 }

 /* Companies Section */
 .companies-section {
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     height: 400px;
     display: flex;
     flex-direction: column;
 }

 .companies-title {
     background: linear-gradient(135deg, #d42027 0%, #b52c32 100%);
     color: white;
     padding: 15px 20px;
     font-weight: 600;
     font-size: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
     flex-shrink: 0;
 }

 .companies-title i {
     color: white;
 }

 .company-logos-container {
     padding: 15px;
     flex: 1;
     overflow-y: auto;
 }

 @media (max-width: 1200px) {
     .content-grid {
         grid-template-columns: 250px 1fr 250px;
     }
 }

 @media (max-width: 992px) {
     .content-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .categories-sidebar,
     .companies-section {
         position: relative;
         top: 0;
         max-height: 400px;
     }

     .banner-section {
         height: 300px;
     }

     .banner-image {
         height: 300px;
     }
 }

 /* Categories & Products Section */
 .categories-products-section {
     background: #f8f9fa;
     padding: 20px 0;
 }

 .categories-card {
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     border: 1px solid #e5e7eb;
     overflow: hidden;
 }

 .categories-header {
     background: linear-gradient(135deg, #d42027 0%, #b52c32 100%);
     color: white;
     padding: 15px 20px;
     font-weight: 600;
 }

 .categories-header h5 {
     margin: 0;
     font-size: 16px;
 }

 .categories-body {
     /* padding: 15px; */
     max-height: 400px;
     overflow-y: auto;
 }

 .category-group {
     border-bottom: 1px solid #f0f0f0;
     padding-bottom: 15px;
 }

 .category-group:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .category-main {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 0;
 }

 .category-link {
     color: #231f20;
     text-decoration: none;
     font-weight: 500;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .category-link:hover {
     color: #d42027;
     padding-left: 5px;
 }

 .toggle-subcategories {
     color: #6c757d;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 12px;
 }

 .toggle-subcategories:hover {
     color: #d42027;
 }

 .subcategories-list {
     padding: 15px;
 }

 .subcategory-link {
     display: block;
     color: #333;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     padding: 10px 15px;
     margin: 2px 0;
     background: #ffffff;
     border-radius: 8px;
     border-left: 4px solid #e5e7eb;
     transition: all 0.3s ease;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
 }

 .subcategory-link:hover {
     color: #d42027;
     background: #fff;
     border-left-color: #d42027;
     transform: translateX(8px);
     box-shadow: 0 4px 12px rgba(212, 32, 39, 0.15);
     text-decoration: none;
 }

 .products-grid {
     background: white;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     border: 1px solid #e5e7eb;
 }

 .product-card {
     background: white;
     border: 1px solid #e5e7eb;
     border-radius: 10px;
     overflow: hidden;
     transition: all 0.3s ease;
     height: 100%;
 }

 .product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     border-color: #d42027;
 }

 .product-image {
     height: 160px;
     background: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 8px 8px;
     overflow: hidden;
     border-bottom: 1px solid #e5e7eb;
 }

 .product-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 6px;
 }

 .product-info {
     padding: 15px;
 }

 .product-name {
     font-size: 14px;
     font-weight: 600;
     color: #231f20;
     margin-bottom: 8px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .product-composition {
     font-size: 12px;
     color: #6c757d;
     margin-bottom: 10px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .product-price {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .product-price .price {
     font-size: 16px;
     font-weight: 700;
     color: #d42027;
 }

 .product-price .unit {
     font-size: 12px;
     color: #6c757d;
 }

 /* Multi-step form styles */
 .step-indicators {
     max-width: 200px;
 }

 .step-dot {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: #e9ecef;
     color: #6c757d;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 12px;
     transition: all 0.3s ease;
 }

 .step-dot.active {
     background: #d42027;
     color: white;
 }

 .step-dot.completed {
     background: #28a745;
     color: white;
 }

 .step-line {
     width: 40px;
     height: 2px;
     background: #e9ecef;
     transition: all 0.3s ease;
 }

 .step-line.completed {
     background: #28a745;
 }

 .form-step {
     min-height: 120px;
 }

 /* Requirement form styles from app.blade.php */
 .step-indicator {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     opacity: 0.4;
     transition: all 0.4s ease;
     position: relative;
 }

 .step-indicator.active {
     opacity: 1;
     color: var(--primary-red);
     transform: scale(1.05);
 }

 .step-indicator.completed {
     opacity: 1;
     color: var(--accent-green);
 }

 .step-circle {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background: #f8f9fa;
     border: 3px solid #e9ecef;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     font-weight: 600;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .step-indicator.active .step-circle {
     background: linear-gradient(135deg, #d42027 0%, #b52c32 100%);
     color: white;
     border-color: #d42027;
     box-shadow: 0 8px 25px rgba(212, 32, 39, 0.3);
 }

 .step-indicator.completed .step-circle {
     background: linear-gradient(135deg, #28a745 0%, #2f7d32 100%);
     color: white;
     border-color: #28a745;
     box-shadow: 0 8px 25px rgba(63, 164, 61, 0.3);
 }

 .step-indicator small {
     font-size: 12px;
     font-weight: 600;
     text-align: center;
     line-height: 1.2;
 }

 .step-line {
     flex: 1;
     height: 3px;
     background: linear-gradient(90deg, #e9ecef 0%, #dee2e6 100%);
     margin: 0 15px;
     border-radius: 2px;
     position: relative;
     overflow: hidden;
 }

 .step-line::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, #d42027, #28a745);
     transition: left 0.6s ease;
 }

 .step-indicator.completed+.step-line::before {
     left: 0;
 }

 .selection-boxes {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-bottom: 15px;
     max-height: 120px;
     overflow-y: auto;
     padding: 5px;
     border: 1px solid #f0f0f0;
     border-radius: 8px;
     background: #fafbfc;
 }

 .selection-box {
     padding: 8px 16px;
     border: 2px solid #e9ecef;
     border-radius: 25px;
     background: white;
     cursor: pointer;
     font-size: 12px;
     font-weight: 500;
     transition: all 0.3s ease;
     user-select: none;
     color: #231f20;
 }

 .selection-box:hover {
     border-color: #d42027;
     background: rgba(212, 32, 39, 0.1);
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(212, 32, 39, 0.15);
     color: #d42027;
 }

 .selection-box.selected {
     background: #d42027;
     color: white;
     border-color: #d42027;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(212, 32, 39, 0.3);
 }

 /* Contact Form Animations */
 .contact-section {
     position: relative;
     overflow: hidden;
 }

 .floating-shapes {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 .shape {
     position: absolute;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     animation: float 6s ease-in-out infinite;
 }

 .shape-1 {
     width: 80px;
     height: 80px;
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 60px;
     height: 60px;
     top: 60%;
     right: 15%;
     animation-delay: 2s;
 }

 .shape-3 {
     width: 100px;
     height: 100px;
     bottom: 20%;
     left: 20%;
     animation-delay: 4s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(180deg);
     }
 }

 .animate-text {
     animation: slideInLeft 1s ease-out;
 }

 .animate-text-delay {
     animation: slideInLeft 1s ease-out 0.3s both;
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .contact-form {
     animation: slideInRight 1s ease-out;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .animated-input {
     border: 2px solid #e9ecef;
     transition: all 0.3s ease;
     position: relative;
 }

 .animated-input:focus {
     border-color: #d42027;
     box-shadow: 0 0 0 3px rgba(212, 32, 39, 0.1);
     transform: translateY(-2px);
 }

 .form-group {
     position: relative;
     overflow: hidden;
 }

 .form-group::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: -100%;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, #d42027, #b52c32);
     transition: left 0.3s ease;
 }

 .form-group:focus-within::before {
     left: 0;
 }

 .animated-btn {
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     border: none;
     background: linear-gradient(45deg, #d42027, #b52c32);
 }

 .animated-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(212, 32, 39, 0.3);
     background: linear-gradient(45deg, #b52c32, #d42027);
 }

 .btn-ripple {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     transform: translate(-50%, -50%);
     transition: width 0.6s, height 0.6s;
 }

 .animated-btn:active .btn-ripple {
     width: 300px;
     height: 300px;
 }

 /* Multi-step contact form styles */
 .contact-step {
     transition: all 0.3s ease;
 }

 .contact-step.active {
     display: block !important;
     animation: fadeInUp 0.5s ease;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }