/* Container for the whole section */
.reinforcement-bar {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 32px 24px 48px 24px;
}

/* Header styles */
.reinforcement-bar__header {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.reinforcement-bar__title {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.reinforcement-bar__divider {
  display: block;
  margin: 0 0 1rem 0;
  width: 160px;
  height: auto;
  position: relative;
  left: 0;
}

.reinforcement-bar__divider-svg {
  width: 100%;
  height: auto;
}

.reinforcement-bar__subtitle {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 400;
  position: relative;
  left: 0;
}

.reinforcement-bar__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 0;
}

/* Product list */
.reinforcement-bar__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Product card */
.reinforcement-bar__card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0;
  overflow: visible;
  gap: 32px;
  padding: 32px;
  margin: 0;
  min-height: 280px;
}

.reinforcement-bar__image {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  background: #eee;
}

.reinforcement-bar__content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: flex-start;
}

.reinforcement-bar__card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #282828;
  line-height: 1.1;
}

.reinforcement-bar__desc {
  font-size: 0.8rem !important;
  color: #282828;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.reinforcement-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E94B4B;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem !important;
  padding: 10px 15px !important;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s;
  gap: 8px;
  white-space: nowrap;
  margin-top: 0;
  width: auto;
  align-self: flex-start;
}

.reinforcement-bar__btn-arrow {
  transition: transform 0.2s ease;
}

.reinforcement-bar__btn:hover {
  background: var(--color-secondary);
}

.reinforcement-bar__btn:hover .reinforcement-bar__btn-arrow {
  transform: translateX(4px);
}

/* Expertise Section */
.expertise {
    background-color: #282828;
    padding: calc(3rem + 2vw) 0;
    color: #fff;
  }
  
  .expertise__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(2rem + 2vw);
  }
  
  .expertise__content {
    flex: 1;
  }
  
  .expertise__title {
    font-size: calc(1.8rem + 0.7vw);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
  }
  
  .expertise__image {
    flex: 0 0 auto;
    max-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .expertise__svg {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

/* Responsive styles */
@media (max-width: 1200px) {
  .reinforcement-bar {
      max-width: 100%;
      padding: 24px 16px 32px 16px;
  }
  
  .reinforcement-bar__card {
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      padding: 24px;
  }
  
  .reinforcement-bar__image {
      width: 100%;
      height: 200px;
  }
  
  .reinforcement-bar__content {
      padding: 0;
  }
}

@media (max-width: 768px) {
  .reinforcement-bar {
      padding: 20px 12px 28px 12px;
  }
  
  .reinforcement-bar__title {
      font-size: 1.75rem;
  }
  
  .reinforcement-bar__card-title {
      font-size: 1.25rem;
  }
  
  .reinforcement-bar__desc {
      font-size: 0.75rem;
  }
  
  .reinforcement-bar__btn {
      font-size: 0.9rem;
      padding: 10px 20px;
      width: auto;
  }
  
  .reinforcement-bar__card {
      padding: 20px;
      min-height: auto;
  }
  
  .reinforcement-bar__image {
      height: 180px;
  }
}

@media (max-width: 480px) {
  .reinforcement-bar {
      padding: 16px 8px 24px 8px;
  }
  
  .reinforcement-bar__title {
      font-size: 1.5rem;
  }
  
  .reinforcement-bar__card-title {
      font-size: 1.1rem;
  }
  
  .reinforcement-bar__desc {
      font-size: 0.7rem;
  }
  
  .reinforcement-bar__btn {
      font-size: 0.85rem;
      padding: 8px 14px;
      width: auto;
  }
  
  .reinforcement-bar__card {
      padding: 16px;
  }
  
  .reinforcement-bar__image {
      height: 160px;
  }
}

/* Large screen styles */
@media (min-width: 1400px) {
  .reinforcement-bar {
      max-width: 1400px;
      padding: 48px 32px 64px 32px;
  }
  
  .reinforcement-bar__header {
      margin-bottom: 48px;
  }
  
  .reinforcement-bar__title {
      font-size: 2.5rem;
  }
  
  .reinforcement-bar__divider {
      width: 200px;
  }
  
  .reinforcement-bar__subtitle {
      font-size: 1rem;
  }
  
  .reinforcement-bar__list {
      gap: 48px;
  }
  
  .reinforcement-bar__card {
      gap: 48px;
      padding: 40px;
      min-height: 320px;
  }
  
  .reinforcement-bar__image {
      width: 400px;
      height: 280px;
  }
  
  .reinforcement-bar__card-title {
      font-size: 1.75rem;
  }
  
  .reinforcement-bar__desc {
      font-size: 1rem;
  }
  
  .reinforcement-bar__btn {
      font-size: 1.05rem;
      padding: 14px 32px;
      width: auto;
  }
}

@media (min-width: 1600px) {
  .reinforcement-bar {
      max-width: 1600px;
      padding: 64px 40px 80px 40px;
  }
  
  .reinforcement-bar__header {
      margin-bottom: 56px;
  }
  
  .reinforcement-bar__title {
      font-size: 2.75rem;
  }
  
  .reinforcement-bar__divider {
      width: 240px;
  }
  
  .reinforcement-bar__list {
      gap: 56px;
  }
  
  .reinforcement-bar__card {
      gap: 56px;
      padding: 48px;
      min-height: 360px;
  }
  
  .reinforcement-bar__image {
      width: 480px;
      height: 320px;
  }
  
  .reinforcement-bar__card-title {
      font-size: 2rem;
  }
  
  .reinforcement-bar__desc {
      font-size: 1.1rem;
  }
  
  .reinforcement-bar__btn {
      font-size: 1.1rem;
      padding: 16px 36px;
      width: auto;
  }
}

/* Extra large screen styles */
@media (min-width: 1920px) {
  .reinforcement-bar {
      width: var(--container-width);
      max-width: var(--container-max-width);
      padding: 80px 48px 96px 48px;
      margin: 0 auto;
  }
  
  .reinforcement-bar__header {
      margin-bottom: 64px;
      width: 100%;
  }
  
  .reinforcement-bar__title {
      font-size: 3rem;
      letter-spacing: -1.5px;
  }
  
  .reinforcement-bar__divider {
      width: 280px;
      margin-bottom: 1.5rem;
  }
  
  .reinforcement-bar__subtitle {
      font-size: 1.1rem;
      max-width: 600px;
  }
  
  .reinforcement-bar__list {
      gap: 64px;
      width: 100%;
  }
  
  .reinforcement-bar__card {
      gap: 64px;
      padding: 56px;
      min-height: 400px;
      transition: transform 0.3s ease;
      width: 100%;
  }
  
  .reinforcement-bar__card:hover {
      transform: translateY(-4px);
  }
  
  .reinforcement-bar__image {
      width: 560px;
      height: 360px;
      transition: transform 0.3s ease;
  }
  
  .reinforcement-bar__card:hover .reinforcement-bar__image {
      transform: scale(1.02);
  }
  
  .reinforcement-bar__card-title {
      font-size: 2.25rem;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
  }
  
  .reinforcement-bar__desc {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 800px;
  }
  
  .reinforcement-bar__btn {
      font-size: 1.15rem;
      padding: 18px 40px;
      width: auto;
  }
  
  .reinforcement-bar__btn:hover {
      transform: translateX(8px);
  }
}

/* Ultra-wide screen styles */
@media (min-width: 2560px) {
  .reinforcement-bar {
      width: var(--container-width);
      max-width: var(--container-max-width);
      padding: 96px 56px 112px 56px;
  }
  
  .reinforcement-bar__header {
      margin-bottom: 72px;
      width: 100%;
  }
  
  .reinforcement-bar__title {
      font-size: 3.5rem;
  }
  
  .reinforcement-bar__divider {
      width: 320px;
  }
  
  .reinforcement-bar__subtitle {
      font-size: 1.2rem;
      max-width: 700px;
  }
  
  .reinforcement-bar__list {
      gap: 72px;
      width: 100%;
  }
  
  .reinforcement-bar__card {
      gap: 72px;
      padding: 64px;
      min-height: 440px;
      width: 100%;
  }
  
  .reinforcement-bar__image {
      width: 640px;
      height: 400px;
  }
  
  .reinforcement-bar__card-title {
      font-size: 2.5rem;
  }
  
  .reinforcement-bar__desc {
      font-size: 1.3rem;
      line-height: 1.7;
      max-width: 900px;
  }
  
  .reinforcement-bar__btn {
      font-size: 1.2rem;
      padding: 20px 48px;
      width: auto;
  }
}